14 implementations of YValuesPerPoint
System.Web.DataVisualization (14)
Common\ChartTypes\BarChart.cs (1)
293
virtual public int
YValuesPerPoint
{ get { return 1; } }
Common\ChartTypes\BoxPlotChart.cs (1)
200
virtual public int
YValuesPerPoint
{ get { return 6; } }
Common\ChartTypes\ErrorBarChart.cs (1)
248
virtual public int
YValuesPerPoint
{ get { return 3; } }
Common\ChartTypes\FastLineChart.cs (1)
208
virtual public int
YValuesPerPoint
{ get { return 1; } }
Common\ChartTypes\FastPointChart.cs (1)
209
virtual public int
YValuesPerPoint
{ get { return 1; } }
Common\ChartTypes\FunnelChart.cs (1)
383
virtual public int
YValuesPerPoint
{ get { return 1; } }
Common\ChartTypes\PieChart.cs (1)
255
virtual public int
YValuesPerPoint
{ get { return 1; } }
Common\ChartTypes\PointChart.cs (1)
248
virtual public int
YValuesPerPoint
{ get { return 1; } }
Common\ChartTypes\RadarChart.cs (1)
236
virtual public int
YValuesPerPoint
{ get { return 1; } }
Common\ChartTypes\RenkoChart.cs (1)
647
virtual public int
YValuesPerPoint
{ get { return 1; } }
Common\ChartTypes\StackedBarChart.cs (1)
460
public int
YValuesPerPoint
{ get { return 1; } }
Common\ChartTypes\StackedColumnChart.cs (1)
448
virtual public int
YValuesPerPoint
{ get { return 1; } }
Common\ChartTypes\StockChart.cs (1)
272
virtual public int
YValuesPerPoint
{ get { return 4; } }
Common\ChartTypes\ThreeLineBreakChart.cs (1)
642
virtual public int
YValuesPerPoint
{ get { return 1; } }
6 references to YValuesPerPoint
System.Web.DataVisualization (6)
Common\DataManager\DataSeries.cs (4)
1998
if(chartType.
YValuesPerPoint
> _yValuesPerPoint)
2000
_yValuesPerPoint = chartType.
YValuesPerPoint
;
2438
if(_yValuesPerPoint < type.
YValuesPerPoint
)
2441
_yValuesPerPoint = type.
YValuesPerPoint
;
Common\General\AxisScaleBreaks.cs (2)
996
if(chartType.ExtraYValuesConnectedToYAxis && chartType.
YValuesPerPoint
> 1)
998
maxYValueCount = chartType.
YValuesPerPoint
;