public FlotSeries(FlotChart chart, Action <SeriesOptions> builder) { Chart = chart; _data = new List <FlotPoint>(); if (builder != null) { _options = new SeriesOptions(); builder(_options); } }
public FlotSeries(FlotChart chart) : this(chart, null) { }