Rock.Web.UI.Controls.FlotChart.FlotChart C# (CSharp) Method

FlotChart() public method

Initializes a new instance of the FlotChart class.
public FlotChart ( ) : System
return System
        public FlotChart()
        {
            Options = new ChartOptions();

            // set default options, but ChartStyle or child class can override some of it
            this.Options.xaxis = new AxisOptions { mode = AxisMode.time };
            this.Options.grid = new GridOptions { hoverable = true, clickable = true };
        }