MindFusion.Charting for JavaScript Programmer's Guide
Version History

The list below describes past changes and additions to MindFusion.Charting for JavaScript:

New in version 1.2

Axis origin

The origin property of the Axis class lets you specify the origin of an axis. If set to a non-null value, the component renders an axis line inside the plot. Bars are drawn below that axis line if their values are smaller than the origin. For stacked bar charts, each bar length corresponds to the difference between bar's value and origin.

The Plot.drawOrigins and Plot2D.drawOrigins methods allow you to draw the axis origin lines when rendering the chart plot by yourself.

Miscellaneous

New in version 1.1.1

Interactive range selection

Miscellaneous

New in version 1.1

FunnelChart

Funnel charts represent the stages of a process and show relative values or measurements associated with each stage. In MindFusion.Charting for JavaScript funnel charts can be created by utilizing the FunnelChart or FunnelRenderer classes. FunnelChart inherits from the base Chart class and offers additional customization through its segmentSpacing and stemBase properties.

Theme XML serialization

Themes now can be serialized to and from XML through the use of the respective loadFrom and saveTo methods.

Miscellaneous