Release notes

Keep up with latest product news

3974 notes
11 Sep, 2021 EEvgeniy Potapov
promjet-stats
Version 1.0.6
  • Tableau dashboards released to repo
11 Sep, 2021 EEvgeniy Potapov
promjet-stats
Version 1.0.7
  • coming to be a ZPM package
10 Sep, 2021 Ludmila Valerko
Kano MDM
Version 2021.1

New logo

10 Sep, 2021 OOliver Wilms
iris-analytics-for-money
Version 0.1.8

Fix issues in zpm module

09 Sep, 2021 Henry Pereira
pop-song-analytics
Version 1.0.3
  • Add individual global import for ZPM
  • Fix PowerBI file
09 Sep, 2021 Dmitry Maslennikov
iris-analytics-datastudio
Version 1.0.0

Initial Release

09 Sep, 2021 EEvgeniy Potapov
promjet-stats
Version 1.0.5

more info and screenshots now in README.MD

09 Sep, 2021 EEvgeniy Potapov
promjet-stats
Version 1.0.4
  • connected IRIS to Atscale Data Warehouse on http://atscale.teccod.ru:10500
  • Atscale CUBE xml addet to GitHub
  • created PowerBI dashboards from Atscale Cube, published here
  • PowerBI .pbix added to GitHub
09 Sep, 2021 OOliver Wilms
iris-analytics-for-money
Version 0.1.6

Export/Import Dashboard with Pivot Table using Container Class

08 Sep, 2021 Anton Gnibeda
DeepSeeWeb
Version 3.1.27
  • fixed issue with setting current value of choose data source control if running as shared widget
  • now datasource url parameter changed while changing datasource on shared widget
  • added tooltipProperty data property for map widget to define custom tooltips
  • added support for html in map tooltips
  • added communication with parent window using postMessage to avoid cross-domain restrictions:
// Extended interface for widget event
export interface IWidgetEvent {
    type: WidgetEventType;
    index: number;
    widget: IWidgetInfo;
    drills?: IWidgetDrill[];
    filters?: string;
    datasource?: string;
}

// Example
window.addEventListener('message', e => {
    const event = e.data as IWidgetEvent;
    switch (event.type) {
        case 'drill':
            // code ... 
            break;
        case 'filter': 
            // code ... 
            break;
        case 'datasource': 
            // code ... 
            break;
    }
});
08 Sep, 2021 OOliver Wilms
iris-analytics-for-money
Version 0.1.5

Fix test data import issue

08 Sep, 2021 EEvgeniy Potapov
promjet-stats
Version 1.0.3
  • added Yandex.Metrika API connection
  • added Dashboard for data from Yandex.Metrika
07 Sep, 2021 Henry Pereira
pop-song-analytics
Version 1.0.2

Fix script to generate musical genre

07 Sep, 2021 Anton Gnibeda
DeepSeeWeb
Version 3.1.26
  • added event passing to parent window via dsw object for shared widgets.
    Now shared widgets can pass drill and filter events to parent window
// Define dsw object in window using this interface:
export interface IDSW {
    onFilter: (e: IWidgetEvent) => void;
    onDrill: (e: IWidgetEvent) => void;
}
// Widget event
export interface IWidgetEvent {
    index: number;
    windget: IWidgetInfo;
    drills?: IWidgetDrill[];
    filters?: string;
}
// Example:
window.dsw = {
    onDrill: (data) => {
         // handle drill event here
    }, 
    onFilter: (data) => {
         // handle filter event here
    }
}
07 Sep, 2021 OOliver Wilms
iris-analytics-for-money
Version 0.1.4

Added iris-for-money cube from Architect

06 Sep, 2021 AAlex Anderson
OMNI-Lab
Version 1.0.0

Initial Release

06 Sep, 2021 OOliver Wilms
iris-analytics-for-money
Version 0.1.3

Includes test data

06 Sep, 2021 OOliver Wilms
iris-analytics-for-money
Version 0.1.2

Build Riches cube

06 Sep, 2021 OOliver Wilms
iris-analytics-for-money
Version 0.1.0

Initial Release

06 Sep, 2021 OOliver Wilms
iris-analytics-for-money
Version 0.1.1

Added dependency in module.xml

05 Sep, 2021 Henry Pereira
pop-song-analytics
Version 1.0.0

Initial Release

05 Sep, 2021 Henry Pereira
pop-song-analytics
Version 1.0.1
  • Add Musical Genre Table

  • Add PowerBI dashboard

05 Sep, 2021 EEvgeniy Potapov
promjet-stats
Version 1.0.2

Logo uploaded

05 Sep, 2021 EEvgeniy Potapov
promjet-stats
Version 1.0.0

Initial Release

05 Sep, 2021 EEvgeniy Potapov
promjet-stats
Version 1.0.1

New description

05 Sep, 2021 Yuri Marx
Analytics OKR
Version 1.0.0

Initial Release

05 Sep, 2021 Yuri Marx
Analytics OKR
Version 1.0.1

Link to community article

04 Sep, 2021 JJohn Pan
AlertDashboard
Version 1.0.1

image

03 Sep, 2021 Anton Gnibeda
DeepSeeWeb
Version 3.1.25
  • version bump (no changes)
03 Sep, 2021 Anton Gnibeda
DeepSeeWeb
Version 3.1.24
  • added support for sharing linked widgets (#214)
  • fixed map popup positioning issue (#213)
  • fixed map popup drill up issue (#213)
  • fullscreen button hidden on shared widgets (#211)
  • added "noheader" URL parameter for shared widgets, eg. "&noheader=1" (#211)
  • added "datasource" URL parameter for shared widgets, parameter value should be escaped. eg. "&datasource=map%2Frayon_5weights.pivot" (#210)
  • added "drilldown" URL parameter for shared widgets, containing all paths separated by "~" character, parameter value should be escaped (#208)
  • added "variables" URL parameter for shared widgets, eg. "&variables=selectedPeriod.105~testVariable.100" (#212)
  • now "drilldown" url parameter changed while drilling on shared widget (#209)
  • now "FILTERS" url parameter changed while filtering on shared widget (#209)
  • fixed coloring of treemap and pie charts (#198)
  • fixed linked widget in samples-bi. actual issue was: "no overrides for combo chart" (#196)
  • added support for sharing drill levels sharing widget
  • added data property "popupProperty" for map, to define which value show in popup
  • fixed issue with linked inline widgets(widgets on tiles)