The list below describes past changes and additions to MindFusion.Charting:
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( |
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.