1.8.0
New features
- Add a new
LiveChart.ThresholdLine
renderer which draw a straight line at a given value.
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
Renderers main_color
properties are now deprecated and will be removed inLiveChart 2
. Use SerieRenderer.color property instead.- Background.main_color property is now deprecated and will be removed in
LiveChart 2
. Use Background.color property instead.