Skip to content

1.8.0

Compare
Choose a tag to compare
@lcallarec lcallarec released this 04 Nov 11:15
· 133 commits to master since this release

New features

var threshold = new LiveChart.Serie("threshold",  new LiveChart.ThresholdLine(200.0));
threshold.line.color = { 0.8, 0.1, 0.1, 1.0};
threshold.value = 250.0; // update threshold at runtime
  • Add serie line / outline configuration options via LiveChart.Serie.line.
    Full configuration details available in Path class.
serie.line.color = { 0.0, 0.1, 0.8, 1.0};
serie.line.width = 2;
serie.line.dash = Dash() {dashes = {1}, offset = 2};
serie.line.visibility = false;//or true

Deprecations