New Features:
- Responsive Mode.
A new property objChartMain3.apiinit.parentRelativeObjectID enables referencing a relative parent for automatic resizing.
This feature is mainly for responsive web platforms, which embed the Chart inside an internal container.
The Chart will resize to accommodate new real-estate size among the rest of the page containers.
1 2 |
//Enable Responsive mode via setting the relative parent objChartMain3.apiinit.parentRelativeObjectID = <ID of relative parent> |
- Light Mode.
This feature offers a solution for reducing loading file size signature, by marking the none required modules.
12345678//use both API settings inside the <objChartMain>.events.layout.readyComplete event.//Enable/Disable the light mode<objChartMain>.apiinit.guipart.litemode = true/false;//Configure specific modules to load or prevent from loading.//<object> is one from the following objects: menu, toolbar, zoom , signals , plugs or header<objChartMain>.apiinit.guipart.enabled.<object> = true/false;