示例#1
0
        public FlotSeries(FlotChart chart, Action <SeriesOptions> builder)
        {
            Chart = chart;
            _data = new List <FlotPoint>();

            if (builder != null)
            {
                _options = new SeriesOptions();
                builder(_options);
            }
        }
示例#2
0
 public FlotSeries(FlotChart chart) : this(chart, null)
 {
 }