Search
What's New in this Release

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

New in version 1.1.2

New in version 1.1.1

  • FunctionSeries can now generate values using lambda expressions.
  • Improved line joints rendering quality in line charts.
  • Improved 3D bar rendering quality (removed miters in line joints).
  • Render dotted grid lines.
  • Fix for even / odd grid colors switching during scroll.

New in version 1.1

Tower charts

The TowerChart control and TowerRenderer component draw tower charts, rendering series side by side to allow comparing data sequence and sizes. Assign the series to compare to LeftSeries and RightSeries properties of the chart. The chart segments are arranged according to the value of TowerLayout property, and their shape is drawn as specified by SegmentShape.

Tower charts require three-dimensional series. The first dimension specifies event order or timing and is used to sort or position segments. Second dimension specifies duration and is rendered as segment length along the main axis. Third dimension specifies a value rendered as segment width along the cross axis. You could use the stock EventSeries class as data container, or implement the Series interface to provide data from your own data structures.


Miscellaneous