Skip to content

1.7.0

Compare
Choose a tag to compare
@lcallarec lcallarec released this 02 Nov 08:17
· 165 commits to master since this release

API

  • Series can be retrieved using Chart.series property, by index using array access notation or getter (Chart.series[index] or Chart.series.get(int index)), or by name (Chart.series.get_by_name(string name)). Adding a new value to a serie is simpler : get the serie (either from where you created it or from chart's property) and add a value with Serie.add(double value)

  • Hence Chart.add_value and Chart.add_value_by_index methods are now deprecated and will be removed in LiveChart 2.