Release notes
Keep up with latest product news
3515 notes
promjet-statsVersion 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
DeepSeeWebVersion 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;
}
});
promjet-statsVersion 1.0.3
- added Yandex.Metrika API connection
- added Dashboard for data from Yandex.Metrika
DeepSeeWebVersion 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
}
}
DeepSeeWebVersion 3.1.25
- version bump (no changes)
DeepSeeWebVersion 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)
DeepSeeWebVersion 3.1.23
- added support for MDX order in drilldown (#205)
- added support for MDX order in lightpivottable (#205)
- added auto-drill for charts & treemap if there is only one item present as mdx result (#203)
- fixed issue with colorProperty, now read from dataProperties (#202)
- fixed issue with choose data source control default source display (#206)
- fixed issue "no back button after drill" on some widgets