14 implementations of IChartType
System.Windows.Forms.DataVisualization (14)
Common\ChartTypes\BarChart.cs (1)
141 internal class BarChart : IChartType
Common\ChartTypes\BoxPlotChart.cs (1)
64 internal class BoxPlotChart : IChartType
Common\ChartTypes\ErrorBarChart.cs (1)
117 internal class ErrorBarChart : IChartType
Common\ChartTypes\FastLineChart.cs (1)
66internal class FastLineChart : IChartType
Common\ChartTypes\FastPointChart.cs (1)
67internal class FastPointChart : IChartType
Common\ChartTypes\FunnelChart.cs (1)
172 internal class FunnelChart : IChartType
Common\ChartTypes\PieChart.cs (1)
82 internal class PieChart : IChartType
Common\ChartTypes\PointChart.cs (1)
58internal class PointChart : IChartType
Common\ChartTypes\RadarChart.cs (1)
83 internal class RadarChart : IChartType, ICircularChartType
Common\ChartTypes\RenkoChart.cs (1)
104 internal class RenkoChart : IChartType
Common\ChartTypes\StackedBarChart.cs (1)
306 internal class StackedBarChart : IChartType
Common\ChartTypes\StackedColumnChart.cs (1)
301 internal class StackedColumnChart : IChartType
Common\ChartTypes\StockChart.cs (1)
122 internal class StockChart : IChartType
Common\ChartTypes\ThreeLineBreakChart.cs (1)
106 internal class ThreeLineBreakChart : IChartType
23 references to IChartType
System.Windows.Forms.DataVisualization (23)
Common\ChartTypes\ChartTypeRegistry.cs (6)
186 if(type == typeof(IChartType)) 206 public IChartType GetChartType(SeriesChartType chartType) 216 public IChartType GetChartType(string name) 233 return (IChartType)_createdChartTypes[name]; 267IChartType chartType = (IChartType)_createdChartTypes[name];
Common\DataManager\DataManager.cs (5)
149 IChartType chartType = e.CommonElements.ChartTypeRegistry.GetChartType(series.ChartTypeName); 626 IChartType chartType = chartTypeRegistry.GetChartType(this._series[seriesName].ChartTypeName); 672IChartType chartType = chartTypeRegistry.GetChartType(this._series[seriesName].ChartTypeName); 857 IChartType chartType = chartTypeRegistry.GetChartType(this._series[seriesName].ChartTypeName); 908IChartType chartType = chartTypeRegistry.GetChartType(this._series[seriesName].ChartTypeName);
Common\DataManager\DataSeries.cs (2)
1997 IChartType chartType = chartTypeRegistry.GetChartType(this.ChartTypeName); 2437 IChartType type = chartTypeRegistry.GetChartType(value);
Common\General\AxisLabels.cs (1)
384 IChartType chartType = Common.ChartTypeRegistry.GetChartType( ChartArea.GetFirstSeries().ChartTypeName );
Common\General\AxisScaleBreaks.cs (2)
470 IChartType chartType = this.axis.ChartArea.Common.ChartTypeRegistry.GetChartType(series.ChartTypeName); 993 IChartType chartType = this.axis.ChartArea.Common.ChartTypeRegistry.GetChartType(series.ChartTypeName);
Common\General\ChartArea.cs (2)
2123IChartType chartType = Common.ChartTypeRegistry.GetChartType((string)ChartTypes[chartTypeIndex]); 2300IChartType type = Common.ChartTypeRegistry.GetChartType(chartTypeInfo.ChartType);
Common\General\ChartAreaAxes.cs (1)
1180 IChartType charType = Common.ChartTypeRegistry.GetChartType( series.ChartTypeName );
Common\General\Legend.cs (2)
2115 IChartType chartType = this.Common.ChartTypeRegistry.GetChartType(series.ChartTypeName); 6172 IChartType chartType = common.ChartTypeRegistry.GetChartType(series.ChartTypeName);
Common\General\Selection.cs (1)
2952ChartTypes.IChartType chartType = area.Common.ChartTypeRegistry.GetChartType(o.ToString());
Common\General\SmartLabels.cs (1)
1332 IChartType chartType = registry.GetChartType(series.ChartTypeName);