Search
Version History

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

New in version 1.0.2

Function series

The FunctionSeries class represents a series that calculates its values from provided mathematical expression. The formula is specified via expression argument of FunctionSeries constructor along with number and range of values to generate. The formula can contain functions from the ones built into MindFusion.Scripting, and can call custom ones by means of EvaluateFunctionDelegate.

Java  Copy Code

FunctionSeries series = new FunctionSeries(
    "x * Sin(x) + x + 5", 12, 12);

Miscellaneous

New in version 1.0.1

Axis origin

The setOrigin method of 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.

Miscellaneous

  • StemWidth property added to FunnelChart.
  • JavaFX dependencies removed.
  • Fixed exception when applying zoom history.
  • Fixed rendering of zoom buttons.