UnityEditorInternal.ProfilerChart.ProfilerChart C# (CSharp) Method

ProfilerChart() public method

public ProfilerChart ( ProfilerArea area, Chart type, float dataScale, int seriesCount ) : System
area ProfilerArea
type Chart
dataScale float
seriesCount int
return System
        public ProfilerChart(ProfilerArea area, Chart.ChartType type, float dataScale, int seriesCount)
        {
            this.m_Area = area;
            this.m_Type = type;
            this.m_DataScale = dataScale;
            this.m_Chart = new Chart();
            this.m_Data = new ChartData();
            this.m_Series = new ChartSeries[seriesCount];
            this.m_Active = this.ReadActiveState();
            this.ApplyActiveState();
        }