469 references to CustomPropertyName
System.Windows.Forms.DataVisualization (469)
Common\ChartTypes\BarChart.cs (16)
367
if(common.DataManager.Series[seriesName].IsCustomPropertySet(
CustomPropertyName
.DrawSideBySide))
369
string attribValue = common.DataManager.Series[seriesName][
CustomPropertyName
.DrawSideBySide];
864
if (point.IsCustomPropertySet(
CustomPropertyName
.BarLabelStyle))
866
valueLabelAttrib = point[
CustomPropertyName
.BarLabelStyle];
868
else if (ser.IsCustomPropertySet(
CustomPropertyName
.BarLabelStyle))
870
valueLabelAttrib = ser[
CustomPropertyName
.BarLabelStyle];
1218
if( series.EmptyPointStyle.IsCustomPropertySet(
CustomPropertyName
.EmptyPointValue) )
1220
emptyPointValue = series.EmptyPointStyle[
CustomPropertyName
.EmptyPointValue];
1222
else if( series.IsCustomPropertySet(
CustomPropertyName
.EmptyPointValue) )
1224
emptyPointValue = series[
CustomPropertyName
.EmptyPointValue];
1336
if(common.DataManager.Series[seriesName].IsCustomPropertySet(
CustomPropertyName
.DrawSideBySide))
1338
string attribValue = common.DataManager.Series[seriesName][
CustomPropertyName
.DrawSideBySide];
1890
if (point.IsCustomPropertySet(
CustomPropertyName
.BarLabelStyle))
1892
valueLabelAttrib = point[
CustomPropertyName
.BarLabelStyle];
1894
else if (ser.IsCustomPropertySet(
CustomPropertyName
.BarLabelStyle))
1896
valueLabelAttrib = ser[
CustomPropertyName
.BarLabelStyle];
Common\ChartTypes\BoxPlotChart.cs (45)
280
if(ser.IsCustomPropertySet(
CustomPropertyName
.DrawSideBySide))
282
string attribValue = ser[
CustomPropertyName
.DrawSideBySide];
459
if(point.IsCustomPropertySet(
CustomPropertyName
.BoxPlotShowAverage) || ser.IsCustomPropertySet(
CustomPropertyName
.BoxPlotShowAverage))
461
string showAverageValue = ser[
CustomPropertyName
.BoxPlotShowAverage];
462
if(point.IsCustomPropertySet(
CustomPropertyName
.BoxPlotShowAverage))
464
showAverageValue = point[
CustomPropertyName
.BoxPlotShowAverage];
476
throw(new InvalidOperationException( SR.ExceptionCustomAttributeValueInvalid( point[
CustomPropertyName
.BoxPlotShowAverage], "BoxPlotShowAverage")));
515
if(point.IsCustomPropertySet(
CustomPropertyName
.BoxPlotShowMedian) || ser.IsCustomPropertySet(
CustomPropertyName
.BoxPlotShowMedian))
517
string showMedianValue = ser[
CustomPropertyName
.BoxPlotShowMedian];
518
if(point.IsCustomPropertySet(
CustomPropertyName
.BoxPlotShowMedian))
520
showMedianValue = point[
CustomPropertyName
.BoxPlotShowMedian];
532
throw(new InvalidOperationException(SR.ExceptionCustomAttributeValueInvalid( point[
CustomPropertyName
.BoxPlotShowMedian],"BoxPlotShowMedian")));
1049
if(ser.IsCustomPropertySet(
CustomPropertyName
.DrawSideBySide))
1051
string attribValue = ser[
CustomPropertyName
.DrawSideBySide];
1246
if(point.IsCustomPropertySet(
CustomPropertyName
.BoxPlotShowAverage) || ser.IsCustomPropertySet(
CustomPropertyName
.BoxPlotShowAverage))
1248
string showAverageValue = ser[
CustomPropertyName
.BoxPlotShowAverage];
1249
if(point.IsCustomPropertySet(
CustomPropertyName
.BoxPlotShowAverage))
1251
showAverageValue = point[
CustomPropertyName
.BoxPlotShowAverage];
1263
throw(new InvalidOperationException(SR.ExceptionCustomAttributeValueInvalid(point[
CustomPropertyName
.BoxPlotShowAverage], "BoxPlotShowAverage")));
1295
if(point.IsCustomPropertySet(
CustomPropertyName
.BoxPlotShowMedian) || ser.IsCustomPropertySet(
CustomPropertyName
.BoxPlotShowMedian))
1297
string showMedianValue = ser[
CustomPropertyName
.BoxPlotShowMedian];
1298
if(point.IsCustomPropertySet(
CustomPropertyName
.BoxPlotShowMedian))
1300
showMedianValue = point[
CustomPropertyName
.BoxPlotShowMedian];
1312
throw(new InvalidOperationException(SR.ExceptionCustomAttributeValueInvalid(point[
CustomPropertyName
.BoxPlotShowMedian], "BoxPlotShowMedian")));
1557
if(boxPlotSeries.IsCustomPropertySet(
CustomPropertyName
.BoxPlotSeries))
1560
string[] attrValues = boxPlotSeries[
CustomPropertyName
.BoxPlotSeries].Split(';');
1568
boxPlotSeries.Points[pointIndex++][
CustomPropertyName
.BoxPlotSeries] = val.Trim();
1576
if(point.IsCustomPropertySet(
CustomPropertyName
.BoxPlotSeries))
1579
string linkedSeriesName = point[
CustomPropertyName
.BoxPlotSeries];
1647
string boxPercentile = (boxPoint.IsCustomPropertySet(
CustomPropertyName
.BoxPlotPercentile)) ? boxPoint[
CustomPropertyName
.BoxPlotPercentile] : String.Empty;
1648
if(boxPercentile.Length == 0 && boxPoint.series != null && boxPoint.series.IsCustomPropertySet(
CustomPropertyName
.BoxPlotPercentile))
1650
boxPercentile = boxPoint.series[
CustomPropertyName
.BoxPlotPercentile];
1652
string boxWhiskerPercentile = (boxPoint.IsCustomPropertySet(
CustomPropertyName
.BoxPlotWhiskerPercentile)) ? boxPoint[
CustomPropertyName
.BoxPlotWhiskerPercentile] : String.Empty;
1653
if(boxWhiskerPercentile.Length == 0 && boxPoint.series != null && boxPoint.series.IsCustomPropertySet(
CustomPropertyName
.BoxPlotWhiskerPercentile))
1655
boxWhiskerPercentile = boxPoint.series[
CustomPropertyName
.BoxPlotWhiskerPercentile];
1708
string showUnusualValues = (boxPoint.IsCustomPropertySet(
CustomPropertyName
.BoxPlotShowUnusualValues)) ? boxPoint[
CustomPropertyName
.BoxPlotShowUnusualValues] : String.Empty;
1709
if(showUnusualValues.Length == 0 && boxPoint.series != null && boxPoint.series.IsCustomPropertySet(
CustomPropertyName
.BoxPlotShowUnusualValues))
1711
showUnusualValues = boxPoint.series[
CustomPropertyName
.BoxPlotShowUnusualValues];
Common\ChartTypes\BubbleChart.cs (20)
224
if(ser.IsCustomPropertySet(
CustomPropertyName
.BubbleScaleMin))
226
_minAll = Math.Min(_minAll, CommonElements.ParseDouble(ser[
CustomPropertyName
.BubbleScaleMin]));
228
if(ser.IsCustomPropertySet(
CustomPropertyName
.BubbleScaleMax))
230
_maxAll = Math.Max(_maxAll, CommonElements.ParseDouble(ser[
CustomPropertyName
.BubbleScaleMax]));
234
if(ser.IsCustomPropertySet(
CustomPropertyName
.BubbleMaxSize))
236
_maxPossibleBubbleSize = CommonElements.ParseDouble(ser[
CustomPropertyName
.BubbleMaxSize]);
244
if(ser.IsCustomPropertySet(
CustomPropertyName
.BubbleMinSize))
246
_minPossibleBubbleSize = CommonElements.ParseDouble(ser[
CustomPropertyName
.BubbleMinSize]);
256
if(ser.IsCustomPropertySet(
CustomPropertyName
.BubbleUseSizeForLabel))
258
if(String.Compare(ser[
CustomPropertyName
.BubbleUseSizeForLabel], "true", StringComparison.OrdinalIgnoreCase) == 0)
363
if(ser.IsCustomPropertySet(
CustomPropertyName
.BubbleScaleMin))
365
minAll = Math.Min(minAll, CommonElements.ParseDouble(ser[
CustomPropertyName
.BubbleScaleMin]));
367
if(ser.IsCustomPropertySet(
CustomPropertyName
.BubbleScaleMax))
369
maxAll = Math.Max(maxAll, CommonElements.ParseDouble(ser[
CustomPropertyName
.BubbleScaleMax]));
373
if(ser.IsCustomPropertySet(
CustomPropertyName
.BubbleMaxSize))
375
maxPossibleBubbleSize = CommonElements.ParseDouble(ser[
CustomPropertyName
.BubbleMaxSize]);
383
if(ser.IsCustomPropertySet(
CustomPropertyName
.BubbleUseSizeForLabel))
385
if(String.Compare(ser[
CustomPropertyName
.BubbleUseSizeForLabel], "true", StringComparison.OrdinalIgnoreCase) == 0)
481
if(ser.IsCustomPropertySet(
CustomPropertyName
.BubbleMaxSize))
483
maxPossibleBubbleSize = CommonElements.ParseDouble(ser[
CustomPropertyName
.BubbleMaxSize]);
Common\ChartTypes\ColumnChart.cs (4)
278
if(common.DataManager.Series[seriesName].IsCustomPropertySet(
CustomPropertyName
.DrawSideBySide))
280
string attribValue = common.DataManager.Series[seriesName][
CustomPropertyName
.DrawSideBySide];
675
if(common.DataManager.Series[seriesName].IsCustomPropertySet(
CustomPropertyName
.DrawSideBySide))
677
string attribValue = common.DataManager.Series[seriesName][
CustomPropertyName
.DrawSideBySide];
Common\ChartTypes\ErrorBarChart.cs (53)
336
if(ser.IsCustomPropertySet(
CustomPropertyName
.ErrorBarSeries))
339
linkedSeriesName = ser[
CustomPropertyName
.ErrorBarSeries];
371
if(common.DataManager.Series[seriesName].IsCustomPropertySet(
CustomPropertyName
.DrawSideBySide))
373
string attribValue = common.DataManager.Series[seriesName][
CustomPropertyName
.DrawSideBySide];
411
if(!currentDrawSeriesSideBySide && ser.IsCustomPropertySet(
CustomPropertyName
.DrawSideBySide))
413
string attribValue = ser[
CustomPropertyName
.DrawSideBySide];
498
if(point.IsCustomPropertySet(
CustomPropertyName
.ErrorBarStyle) || ser.IsCustomPropertySet(
CustomPropertyName
.ErrorBarStyle))
500
string errorBarStyle = ser[
CustomPropertyName
.ErrorBarStyle];
501
if(point.IsCustomPropertySet(
CustomPropertyName
.ErrorBarStyle))
503
errorBarStyle = point[
CustomPropertyName
.ErrorBarStyle];
524
throw(new InvalidOperationException( SR.ExceptionCustomAttributeValueInvalid( point[
CustomPropertyName
.ErrorBarStyle], "ErrorBarStyle")));
649
if(point.IsCustomPropertySet(
CustomPropertyName
.ErrorBarStyle) || ser.IsCustomPropertySet(
CustomPropertyName
.ErrorBarStyle))
651
string errorBarStyle = ser[
CustomPropertyName
.ErrorBarStyle];
652
if(point.IsCustomPropertySet(
CustomPropertyName
.ErrorBarStyle))
654
errorBarStyle = point[
CustomPropertyName
.ErrorBarStyle];
672
throw(new InvalidOperationException(SR.ExceptionCustomAttributeValueInvalid(point[
CustomPropertyName
.ErrorBarStyle], "ErrorBarStyle")));
777
if(point.IsCustomPropertySet(
CustomPropertyName
.ErrorBarCenterMarkerStyle) || point.series.IsCustomPropertySet(
CustomPropertyName
.ErrorBarCenterMarkerStyle))
783
markerStyle = point.series[
CustomPropertyName
.ErrorBarCenterMarkerStyle];
784
if(point.IsCustomPropertySet(
CustomPropertyName
.ErrorBarCenterMarkerStyle))
786
markerStyle = point[
CustomPropertyName
.ErrorBarCenterMarkerStyle];
1118
if(ser.IsCustomPropertySet(
CustomPropertyName
.ErrorBarSeries))
1121
string attribValue = ser[
CustomPropertyName
.ErrorBarSeries];
1151
if(common.DataManager.Series[seriesName].IsCustomPropertySet(
CustomPropertyName
.DrawSideBySide))
1153
attribValue = common.DataManager.Series[seriesName][
CustomPropertyName
.DrawSideBySide];
1251
if(point.IsCustomPropertySet(
CustomPropertyName
.ErrorBarStyle) || ser.IsCustomPropertySet(
CustomPropertyName
.ErrorBarStyle))
1253
string errorBarStyle = ser[
CustomPropertyName
.ErrorBarStyle];
1254
if(point.IsCustomPropertySet(
CustomPropertyName
.ErrorBarStyle))
1256
errorBarStyle = point[
CustomPropertyName
.ErrorBarStyle];
1276
throw(new InvalidOperationException(SR.ExceptionCustomAttributeValueInvalid(point[
CustomPropertyName
.ErrorBarStyle], "ErrorBarStyle")));
1419
if(point.IsCustomPropertySet(
CustomPropertyName
.ErrorBarStyle) || ser.IsCustomPropertySet(
CustomPropertyName
.ErrorBarStyle))
1421
string errorBarStyle = ser[
CustomPropertyName
.ErrorBarStyle];
1422
if(point.IsCustomPropertySet(
CustomPropertyName
.ErrorBarStyle))
1424
errorBarStyle = point[
CustomPropertyName
.ErrorBarStyle];
1442
throw(new InvalidOperationException(SR.ExceptionCustomAttributeValueInvalid( point[
CustomPropertyName
.ErrorBarStyle], "ErrorBarStyle")));
1552
if(point.IsCustomPropertySet(
CustomPropertyName
.ErrorBarCenterMarkerStyle) || point.series.IsCustomPropertySet(
CustomPropertyName
.ErrorBarCenterMarkerStyle))
1558
markerStyle = point.series[
CustomPropertyName
.ErrorBarCenterMarkerStyle];
1559
if(point.IsCustomPropertySet(
CustomPropertyName
.ErrorBarCenterMarkerStyle))
1561
markerStyle = point[
CustomPropertyName
.ErrorBarCenterMarkerStyle];
1612
if(!errorBarSeries.IsCustomPropertySet(
CustomPropertyName
.ErrorBarType) &&
1613
!errorBarSeries.IsCustomPropertySet(
CustomPropertyName
.ErrorBarSeries))
1621
if(errorBarSeries.IsCustomPropertySet(
CustomPropertyName
.ErrorBarType))
1623
string typeName = errorBarSeries[
CustomPropertyName
.ErrorBarType];
1646
throw(new InvalidOperationException(SR.ExceptionErrorBarTypeInvalid(errorBarSeries[
CustomPropertyName
.ErrorBarType])));
1656
throw(new InvalidOperationException(SR.ExceptionErrorBarTypeFormatInvalid(errorBarSeries[
CustomPropertyName
.ErrorBarType])));
1665
throw (new InvalidOperationException(SR.ExceptionErrorBarTypeFormatInvalid(errorBarSeries[
CustomPropertyName
.ErrorBarType])));
1807
if(!errorBarSeries.IsCustomPropertySet(
CustomPropertyName
.ErrorBarSeries))
1813
string linkedSeriesName = errorBarSeries[
CustomPropertyName
.ErrorBarSeries];
Common\ChartTypes\FastLineChart.cs (2)
282
if (series.IsCustomPropertySet(
CustomPropertyName
.PermittedPixelError))
284
string attrValue = series[
CustomPropertyName
.PermittedPixelError];
Common\ChartTypes\FastPointChart.cs (2)
283
if (series.IsCustomPropertySet(
CustomPropertyName
.PermittedPixelError))
285
string attrValue = series[
CustomPropertyName
.PermittedPixelError];
Common\ChartTypes\FunnelChart.cs (19)
234
internal string funnelPointGapAttributeName =
CustomPropertyName
.FunnelPointGap;
237
internal string funnelRotationAngleAttributeName =
CustomPropertyName
.Funnel3DRotationAngle;
240
protected string funnelPointMinHeight =
CustomPropertyName
.FunnelMinPointHeight;
243
internal string funnel3DDrawingStyleAttributeName =
CustomPropertyName
.Funnel3DDrawingStyle;
246
internal string funnelInsideLabelAlignmentAttributeName =
CustomPropertyName
.FunnelInsideLabelAlignment;
249
protected string funnelOutsideLabelPlacementAttributeName =
CustomPropertyName
.FunnelOutsideLabelPlacement;
252
internal string funnelLabelStyleAttributeName =
CustomPropertyName
.FunnelLabelStyle;
2335
string attrValue = properties[
CustomPropertyName
.CalloutLineColor];
2382
string attrValue = properties[
CustomPropertyName
.FunnelNeckWidth];
2402
attrValue = properties[
CustomPropertyName
.FunnelNeckHeight];
2490
string attrValue = properties[
CustomPropertyName
.FunnelStyle];
2719
string attrValue = properties[
CustomPropertyName
.PyramidValueType];
2871
base.funnelLabelStyleAttributeName =
CustomPropertyName
.PyramidLabelStyle;
2872
base.funnelPointGapAttributeName =
CustomPropertyName
.PyramidPointGap;
2873
base.funnelRotationAngleAttributeName =
CustomPropertyName
.Pyramid3DRotationAngle;
2874
base.funnelPointMinHeight =
CustomPropertyName
.PyramidMinPointHeight;
2875
base.funnel3DDrawingStyleAttributeName =
CustomPropertyName
.Pyramid3DDrawingStyle;
2876
base.funnelInsideLabelAlignmentAttributeName =
CustomPropertyName
.PyramidInsideLabelAlignment;
2877
base.funnelOutsideLabelPlacementAttributeName =
CustomPropertyName
.PyramidOutsideLabelPlacement;
Common\ChartTypes\KagiChart.cs (6)
286
if (series.IsCustomPropertySet(
CustomPropertyName
.ReversalAmount))
288
string attrValue = series[
CustomPropertyName
.ReversalAmount].Trim();
338
if (series.IsCustomPropertySet(
CustomPropertyName
.UsedYValue))
341
bool parseSucceed = int.TryParse(series[
CustomPropertyName
.UsedYValue], NumberStyles.Any, CultureInfo.InvariantCulture, out yi);
477
string priceUpColorString = series[
CustomPropertyName
.PriceUpColor];
760
string priceUpColorString = secondPoint.dataPoint.series[
CustomPropertyName
.PriceUpColor];
Common\ChartTypes\LineChart.cs (10)
108
if(IsLineTensionSupported() && series.IsCustomPropertySet(
CustomPropertyName
.LineTension))
110
base.lineTension = CommonElements.ParseFloat(series[
CustomPropertyName
.LineTension]);
408
if (IsLineTensionSupported() && ser.IsCustomPropertySet(
CustomPropertyName
.LineTension))
410
this.lineTension = CommonElements.ParseFloat(ser[
CustomPropertyName
.LineTension]);
1309
if(IsLineTensionSupported() && firstSeries.IsCustomPropertySet(
CustomPropertyName
.LineTension))
1311
this.lineTension = CommonElements.ParseFloat(firstSeries[
CustomPropertyName
.LineTension]);
1389
if(pointAttr.dataPoint.IsCustomPropertySet(
CustomPropertyName
.ShowMarkerLines))
1391
if(String.Compare(pointAttr.dataPoint[
CustomPropertyName
.ShowMarkerLines], "TRUE", StringComparison.OrdinalIgnoreCase) == 0)
1398
if(pointAttr.dataPoint.series.IsCustomPropertySet(
CustomPropertyName
.ShowMarkerLines))
1400
if (String.Compare(pointAttr.dataPoint.series[
CustomPropertyName
.ShowMarkerLines], "TRUE", StringComparison.OrdinalIgnoreCase) == 0)
Common\ChartTypes\PieChart.cs (94)
291
if (series.IsCustomPropertySet(
CustomPropertyName
.CollectedThreshold))
294
bool parseSucceed = double.TryParse(series[
CustomPropertyName
.CollectedThreshold], NumberStyles.Any, CultureInfo.InvariantCulture, out t);
349
if(series.IsCustomPropertySet(
CustomPropertyName
.CollectedThresholdUsePercent))
351
if(string.Compare(series[
CustomPropertyName
.CollectedThresholdUsePercent], "True", StringComparison.OrdinalIgnoreCase) == 0)
355
else if (string.Compare(series[
CustomPropertyName
.CollectedThresholdUsePercent], "False", StringComparison.OrdinalIgnoreCase) == 0)
426
if(series.IsCustomPropertySet(
CustomPropertyName
.CollectedColor))
431
collectedPoint.Color = (Color)colorConverter.ConvertFromString(null, CultureInfo.InvariantCulture, series[
CustomPropertyName
.CollectedColor]);
440
if(series.IsCustomPropertySet(
CustomPropertyName
.CollectedSliceExploded))
442
collectedPoint[
CustomPropertyName
.Exploded] = series[
CustomPropertyName
.CollectedSliceExploded];
446
if(series.IsCustomPropertySet(
CustomPropertyName
.CollectedToolTip))
448
collectedPoint.ToolTip = series[
CustomPropertyName
.CollectedToolTip];
452
if(series.IsCustomPropertySet(
CustomPropertyName
.CollectedLegendText))
454
collectedPoint.LegendText = series[
CustomPropertyName
.CollectedLegendText];
462
if(series.IsCustomPropertySet(
CustomPropertyName
.CollectedLabel))
464
collectedPoint.Label = series[
CustomPropertyName
.CollectedLabel];
621
if(dataSeries[typeSeries[0]].IsCustomPropertySet(
CustomPropertyName
.MinimumRelativePieSize))
623
minimumSize = CommonElements.ParseFloat(dataSeries[typeSeries[0]][
CustomPropertyName
.MinimumRelativePieSize]) / 100.0;
707
if (dataSeries[typeSeries[0]].IsCustomPropertySet(
CustomPropertyName
.PieStartAngle))
710
bool parseSucceed = float.TryParse(dataSeries[typeSeries[0]][
CustomPropertyName
.PieStartAngle], NumberStyles.Any, CultureInfo.InvariantCulture, out angle);
747
if(dataSeries[typeSeries[0]].IsCustomPropertySet(
CustomPropertyName
.DoughnutRadius))
749
doughnutRadius = CommonElements.ParseFloat(dataSeries[typeSeries[0]][
CustomPropertyName
.DoughnutRadius]);
828
if(point.IsCustomPropertySet(
CustomPropertyName
.Exploded))
830
explodedAttrib = point[
CustomPropertyName
.Exploded];
841
if(point.IsCustomPropertySet(
CustomPropertyName
.PieLineColor) || dataSeries[typeSeries[0]].IsCustomPropertySet(
CustomPropertyName
.PieLineColor))
847
(point.IsCustomPropertySet(
CustomPropertyName
.PieLineColor)) ? point[
CustomPropertyName
.PieLineColor] : dataSeries[typeSeries[0]][
CustomPropertyName
.PieLineColor]);
862
(point.IsCustomPropertySet(
CustomPropertyName
.PieLineColor)) ? point[
CustomPropertyName
.PieLineColor] : dataSeries[typeSeries[0]][
CustomPropertyName
.PieLineColor]);
1102
if(series.IsCustomPropertySet(
CustomPropertyName
.LabelStyle))
1104
string labelStyleAttrib = series[
CustomPropertyName
.LabelStyle];
1114
else if(series.IsCustomPropertySet(
CustomPropertyName
.PieLabelStyle))
1116
string labelStyleAttrib = series[
CustomPropertyName
.PieLabelStyle];
1128
if(point.IsCustomPropertySet(
CustomPropertyName
.LabelStyle))
1130
string labelStyleAttrib = point[
CustomPropertyName
.LabelStyle];
1141
else if(point.IsCustomPropertySet(
CustomPropertyName
.PieLabelStyle))
1143
string labelStyleAttrib = point[
CustomPropertyName
.PieLabelStyle];
1156
if(series.IsCustomPropertySet(
CustomPropertyName
.LabelsRadialLineSize))
1158
string labelsRadialLineSizeAttrib = series[
CustomPropertyName
.LabelsRadialLineSize];
1167
if(point.IsCustomPropertySet(
CustomPropertyName
.LabelsRadialLineSize))
1169
string labelsRadialLineSizeAttrib = point[
CustomPropertyName
.LabelsRadialLineSize];
1178
if(series.IsCustomPropertySet(
CustomPropertyName
.LabelsHorizontalLineSize))
1180
string labelsHorizontalLineSizeAttrib = series[
CustomPropertyName
.LabelsHorizontalLineSize];
1189
if(point.IsCustomPropertySet(
CustomPropertyName
.LabelsHorizontalLineSize))
1191
string labelsHorizontalLineSizeAttrib = point[
CustomPropertyName
.LabelsHorizontalLineSize];
1523
if(series.IsCustomPropertySet(
CustomPropertyName
.LabelStyle))
1525
string labelStyleAttrib = series[
CustomPropertyName
.LabelStyle];
1535
else if(series.IsCustomPropertySet(
CustomPropertyName
.PieLabelStyle))
1537
string labelStyleAttrib = series[
CustomPropertyName
.PieLabelStyle];
1549
if(point.IsCustomPropertySet(
CustomPropertyName
.LabelStyle))
1551
string labelStyleAttrib = point[
CustomPropertyName
.LabelStyle];
1561
else if(point.IsCustomPropertySet(
CustomPropertyName
.PieLabelStyle))
1563
string labelStyleAttrib = point[
CustomPropertyName
.PieLabelStyle];
1601
if(series.IsCustomPropertySet(
CustomPropertyName
.LabelStyle))
1603
string labelStyleAttrib = series[
CustomPropertyName
.LabelStyle];
1613
else if(series.IsCustomPropertySet(
CustomPropertyName
.PieLabelStyle))
1615
string labelStyleAttrib = series[
CustomPropertyName
.PieLabelStyle];
1627
if(point.IsCustomPropertySet(
CustomPropertyName
.LabelStyle))
1629
string labelStyleAttrib = point[
CustomPropertyName
.LabelStyle];
1639
else if(point.IsCustomPropertySet(
CustomPropertyName
.PieLabelStyle))
1641
string labelStyleAttrib = point[
CustomPropertyName
.PieLabelStyle];
1653
if(series.IsCustomPropertySet(
CustomPropertyName
.LabelsRadialLineSize))
1655
string labelsRadialLineSizeAttrib = series[
CustomPropertyName
.LabelsRadialLineSize];
1664
if(point.IsCustomPropertySet(
CustomPropertyName
.LabelsRadialLineSize))
1666
string labelsRadialLineSizeAttrib = point[
CustomPropertyName
.LabelsRadialLineSize];
1675
if(series.IsCustomPropertySet(
CustomPropertyName
.LabelsHorizontalLineSize))
1677
string labelsHorizontalLineSizeAttrib = series[
CustomPropertyName
.LabelsHorizontalLineSize];
1686
if(point.IsCustomPropertySet(
CustomPropertyName
.LabelsHorizontalLineSize))
1688
string labelsHorizontalLineSizeAttrib = point[
CustomPropertyName
.LabelsHorizontalLineSize];
2392
if (dataSeries[typeSeries[0]].IsCustomPropertySet(
CustomPropertyName
.PieStartAngle))
2395
bool parseSucceed = int.TryParse(dataSeries[typeSeries[0]][
CustomPropertyName
.PieStartAngle], NumberStyles.Any, CultureInfo.InvariantCulture, out angle);
2433
if(point.IsCustomPropertySet(
CustomPropertyName
.Exploded))
2435
explodedAttrib = point[
CustomPropertyName
.Exploded];
2445
if(dataSeries[typeSeries[0]].IsCustomPropertySet(
CustomPropertyName
.DoughnutRadius))
2447
doughnutRadius = CommonElements.ParseFloat(dataSeries[typeSeries[0]][
CustomPropertyName
.DoughnutRadius] );
2457
if(dataSeries[typeSeries[0]].IsCustomPropertySet(
CustomPropertyName
._3DLabelLineSize))
2459
labelLineSize = CommonElements.ParseFloat(dataSeries[typeSeries[0]][
CustomPropertyName
._3DLabelLineSize] );
2569
if(point.IsCustomPropertySet(
CustomPropertyName
.Exploded))
2571
explodedAttrib = point[
CustomPropertyName
.Exploded];
2970
if(point.IsCustomPropertySet(
CustomPropertyName
.PieLineColor) || (point.series != null && point.series.IsCustomPropertySet(
CustomPropertyName
.PieLineColor)) )
2977
if(point.IsCustomPropertySet(
CustomPropertyName
.PieLineColor))
2979
pieLineColor = (Color)colorConverter.ConvertFromString(point[
CustomPropertyName
.PieLineColor]);
2981
else if(point.series != null && point.series.IsCustomPropertySet(
CustomPropertyName
.PieLineColor))
2983
pieLineColor = (Color)colorConverter.ConvertFromString(point.series[
CustomPropertyName
.PieLineColor]);
2997
if(point.IsCustomPropertySet(
CustomPropertyName
.PieLineColor))
2999
pieLineColor = (Color)colorConverter.ConvertFromInvariantString(point[
CustomPropertyName
.PieLineColor]);
3001
else if(point.series != null && point.series.IsCustomPropertySet(
CustomPropertyName
.PieLineColor))
3003
pieLineColor = (Color)colorConverter.ConvertFromInvariantString(point.series[
CustomPropertyName
.PieLineColor]);
5622
point.series.IsCustomPropertySet(
CustomPropertyName
.PieAutoAxisLabels) &&
5623
String.Equals(point.series.GetCustomProperty(
CustomPropertyName
.PieAutoAxisLabels), "false", StringComparison.OrdinalIgnoreCase))
Common\ChartTypes\PointAndFigureChart.cs (12)
284
pointAndFigureSeries.DeleteCustomProperty(
CustomPropertyName
.EmptyPointValue);
375
if (series.IsCustomPropertySet(
CustomPropertyName
.BoxSize))
377
string attrValue = series[
CustomPropertyName
.BoxSize].Trim();
465
if (series.IsCustomPropertySet(
CustomPropertyName
.ReversalAmount))
467
string attrValue = series[
CustomPropertyName
.ReversalAmount].Trim();
494
if(series.IsCustomPropertySet(
CustomPropertyName
.UsedYValueHigh))
499
yValueHighIndex = int.Parse(series[
CustomPropertyName
.UsedYValueHigh], CultureInfo.InvariantCulture);
512
if(series.IsCustomPropertySet(
CustomPropertyName
.UsedYValueLow))
516
yValueLowIndex = int.Parse(series[
CustomPropertyName
.UsedYValueLow], CultureInfo.InvariantCulture);
531
string upPriceColorString = series[
CustomPropertyName
.PriceUpColor];
717
string attrValue = pointAndFigureSeries[
CustomPropertyName
.ProportionalSymbols];
777
pointAndFigureSeries[
CustomPropertyName
.EmptyPointValue] = "Zero";
Common\ChartTypes\PointChart.cs (6)
713
string attrib = point[
CustomPropertyName
.LabelStyle];
716
attrib = ser[
CustomPropertyName
.LabelStyle];
1552
if( series.EmptyPointStyle.IsCustomPropertySet(
CustomPropertyName
.EmptyPointValue) )
1554
emptyPointValue = series.EmptyPointStyle[
CustomPropertyName
.EmptyPointValue];
1556
else if( series.IsCustomPropertySet(
CustomPropertyName
.EmptyPointValue) )
1558
emptyPointValue = series[
CustomPropertyName
.EmptyPointValue];
Common\ChartTypes\PolarChart.cs (5)
203
if (point.IsCustomPropertySet(
CustomPropertyName
.PolarDrawingStyle) ||
204
ser.IsCustomPropertySet(
CustomPropertyName
.PolarDrawingStyle))
207
(point.IsCustomPropertySet(
CustomPropertyName
.PolarDrawingStyle)) ?
208
point[
CustomPropertyName
.PolarDrawingStyle] :
209
ser[
CustomPropertyName
.PolarDrawingStyle];
Common\ChartTypes\RadarChart.cs (11)
1081
string attrib = point[
CustomPropertyName
.LabelStyle];
1084
attrib = ser[
CustomPropertyName
.LabelStyle];
1343
if(point.IsCustomPropertySet(
CustomPropertyName
.RadarDrawingStyle) ||
1344
ser.IsCustomPropertySet(
CustomPropertyName
.RadarDrawingStyle))
1347
(point.IsCustomPropertySet(
CustomPropertyName
.RadarDrawingStyle)) ?
1348
point[
CustomPropertyName
.RadarDrawingStyle] :
1349
ser[
CustomPropertyName
.RadarDrawingStyle];
1448
if( series.EmptyPointStyle.IsCustomPropertySet(
CustomPropertyName
.EmptyPointValue) )
1450
emptyPointValue = series.EmptyPointStyle[
CustomPropertyName
.EmptyPointValue];
1452
else if( series.IsCustomPropertySet(
CustomPropertyName
.EmptyPointValue) )
1454
emptyPointValue = series[
CustomPropertyName
.EmptyPointValue];
Common\ChartTypes\RenkoChart.cs (6)
302
if(series.IsCustomPropertySet(
CustomPropertyName
.BoxSize))
304
string attrValue = series[
CustomPropertyName
.BoxSize].Trim();
402
if(series.IsCustomPropertySet(
CustomPropertyName
.UsedYValue))
406
yValueIndex = int.Parse(series[
CustomPropertyName
.UsedYValue], CultureInfo.InvariantCulture);
444
string upBrickColorString = dataPoint[
CustomPropertyName
.PriceUpColor];
447
upBrickColorString = series[
CustomPropertyName
.PriceUpColor];
Common\ChartTypes\StackedBarChart.cs (11)
579
ser[
CustomPropertyName
.StackedGroupName] = stackGroupName;
1007
ser[
CustomPropertyName
.StackedGroupName] = stackGroupName;
1011
ser.DeleteCustomProperty(
CustomPropertyName
.StackedGroupName);
1102
if (point.IsCustomPropertySet(
CustomPropertyName
.BarLabelStyle))
1104
valueLabelAttrib = point[
CustomPropertyName
.BarLabelStyle];
1106
else if (series.IsCustomPropertySet(
CustomPropertyName
.BarLabelStyle))
1108
valueLabelAttrib = series[
CustomPropertyName
.BarLabelStyle];
1849
if (point.IsCustomPropertySet(
CustomPropertyName
.BarLabelStyle))
1851
valueLabelAttrib = point[
CustomPropertyName
.BarLabelStyle];
1853
else if (ser.IsCustomPropertySet(
CustomPropertyName
.BarLabelStyle))
1855
valueLabelAttrib = ser[
CustomPropertyName
.BarLabelStyle];
Common\ChartTypes\StackedColumnChart.cs (5)
586
ser[
CustomPropertyName
.StackedGroupName] = stackGroupName;
1013
ser[
CustomPropertyName
.StackedGroupName] = stackGroupName;
1017
ser.DeleteCustomProperty(
CustomPropertyName
.StackedGroupName);
1074
if(series.IsCustomPropertySet(
CustomPropertyName
.StackedGroupName))
1076
stackGroupName = series[
CustomPropertyName
.StackedGroupName];
Common\ChartTypes\StockChart.cs (24)
674
if(point.IsCustomPropertySet(
CustomPropertyName
.OpenCloseStyle))
676
styleType = point[
CustomPropertyName
.OpenCloseStyle];
678
else if(ser.IsCustomPropertySet(
CustomPropertyName
.OpenCloseStyle))
680
styleType = ser[
CustomPropertyName
.OpenCloseStyle];
703
if(point.IsCustomPropertySet(
CustomPropertyName
.ShowOpenClose))
705
showOpenClose = point[
CustomPropertyName
.ShowOpenClose];
707
else if(ser.IsCustomPropertySet(
CustomPropertyName
.ShowOpenClose))
709
showOpenClose = ser[
CustomPropertyName
.ShowOpenClose];
750
string attrValue = point[
CustomPropertyName
.PriceUpColor];
773
attrValue = point[
CustomPropertyName
.PriceDownColor];
957
if (point.IsCustomPropertySet(
CustomPropertyName
.LabelValueType))
959
valueType = point[
CustomPropertyName
.LabelValueType];
961
else if (ser.IsCustomPropertySet(
CustomPropertyName
.LabelValueType))
963
valueType = ser[
CustomPropertyName
.LabelValueType];
1499
if(point.IsCustomPropertySet(
CustomPropertyName
.OpenCloseStyle))
1501
styleType = point[
CustomPropertyName
.OpenCloseStyle];
1503
else if(ser.IsCustomPropertySet(
CustomPropertyName
.OpenCloseStyle))
1505
styleType = ser[
CustomPropertyName
.OpenCloseStyle];
1528
if(point.IsCustomPropertySet(
CustomPropertyName
.ShowOpenClose))
1530
showOpenClose = point[
CustomPropertyName
.ShowOpenClose];
1532
else if(ser.IsCustomPropertySet(
CustomPropertyName
.ShowOpenClose))
1534
showOpenClose = ser[
CustomPropertyName
.ShowOpenClose];
1575
string attrValue = point[
CustomPropertyName
.PriceUpColor];
1598
attrValue = point[
CustomPropertyName
.PriceDownColor];
Common\ChartTypes\ThreeLineBreakChart.cs (6)
295
if(series.IsCustomPropertySet(
CustomPropertyName
.UsedYValue))
299
yValueIndex = int.Parse(series[
CustomPropertyName
.UsedYValue], CultureInfo.InvariantCulture);
314
if(series.IsCustomPropertySet(
CustomPropertyName
.NumberOfLinesInBreak))
318
linesInBreak = int.Parse(series[
CustomPropertyName
.NumberOfLinesInBreak], CultureInfo.InvariantCulture);
362
string priceUpColorString = dataPoint[
CustomPropertyName
.PriceUpColor];
365
priceUpColorString = series[
CustomPropertyName
.PriceUpColor];
Common\Converters\CustomAttributesConverters.cs (1)
414
if (attrInfo.Name.Equals(
CustomPropertyName
.ErrorBarType, StringComparison.Ordinal))
Common\DataManager\DataSeries.cs (6)
641
string attribValue = this[
CustomPropertyName
.PixelPointDepth];
671
attribValue = this[
CustomPropertyName
.PixelPointGapDepth];
722
string strWidth = this[
CustomPropertyName
.PointWidth];
740
string attribValue = this[
CustomPropertyName
.MinPixelPointWidth];
769
attribValue = this[
CustomPropertyName
.MaxPixelPointWidth];
794
attribValue = this[
CustomPropertyName
.PixelPointWidth];
Common\General\AxisScale.cs (1)
1151
string strWidth = ser[
CustomPropertyName
.PointWidth];
Common\General\ChartArea.cs (6)
2778
if (series.IsCustomPropertySet(
CustomPropertyName
.AreaDrawingStyle))
2780
if(String.Compare(series[
CustomPropertyName
.AreaDrawingStyle], "Polygon", StringComparison.OrdinalIgnoreCase) == 0)
2784
else if (String.Compare(series[
CustomPropertyName
.AreaDrawingStyle], "Circle", StringComparison.OrdinalIgnoreCase) == 0)
2790
throw(new InvalidOperationException(SR.ExceptionCustomAttributeValueInvalid( series[
CustomPropertyName
.AreaDrawingStyle], "AreaDrawingStyle")));
2813
if(series.IsVisible() && series.ChartArea == this.Name && series.IsCustomPropertySet(
CustomPropertyName
.CircularLabelsStyle))
2815
string styleName = series[
CustomPropertyName
.CircularLabelsStyle];
Common\General\ChartElement.cs (2)
1363
series.IsCustomPropertySet(Utilities.
CustomPropertyName
.IsXAxisQuantitative))
1365
string attribValue = series[Utilities.
CustomPropertyName
.IsXAxisQuantitative];
Common\General\ChartGraphics.cs (2)
4938
string styleName = point[
CustomPropertyName
.PieDrawingStyle];
5531
string styleName = point[
CustomPropertyName
.DrawingStyle];
Common\Utilities\CustomAttributesRegistry.cs (94)
468
CustomPropertyName
.DrawSideBySide,
481
CustomPropertyName
.IsXAxisQuantitative,
510
CustomPropertyName
.EmptyPointValue,
529
CustomPropertyName
.BarLabelStyle,
553
CustomPropertyName
.StackedGroupName,
572
CustomPropertyName
.BarLabelStyle,
597
CustomPropertyName
.DrawingStyle,
625
CustomPropertyName
.PointWidth,
638
CustomPropertyName
.PixelPointWidth,
651
CustomPropertyName
.MinPixelPointWidth,
664
CustomPropertyName
.MaxPixelPointWidth,
684
CustomPropertyName
.PriceUpColor,
695
CustomPropertyName
.PriceDownColor,
712
CustomPropertyName
.LabelValueType,
728
CustomPropertyName
.OpenCloseStyle,
739
CustomPropertyName
.ShowOpenClose,
756
CustomPropertyName
.BubbleScaleMin,
767
CustomPropertyName
.BubbleScaleMax,
778
CustomPropertyName
.BubbleMaxSize,
791
CustomPropertyName
.BubbleMinSize,
804
CustomPropertyName
.BubbleUseSizeForLabel,
826
CustomPropertyName
.PieDrawingStyle,
839
CustomPropertyName
.CollectedThreshold,
852
CustomPropertyName
.CollectedThresholdUsePercent,
863
CustomPropertyName
.CollectedSliceExploded,
874
CustomPropertyName
.CollectedLabel,
885
CustomPropertyName
.CollectedLegendText,
896
CustomPropertyName
.CollectedToolTip,
907
CustomPropertyName
.CollectedColor,
919
CustomPropertyName
.PieStartAngle,
935
CustomPropertyName
.Exploded,
945
CustomPropertyName
.LabelsRadialLineSize,
959
CustomPropertyName
.LabelsHorizontalLineSize,
974
CustomPropertyName
.PieLabelStyle,
985
CustomPropertyName
.MinimumRelativePieSize,
998
CustomPropertyName
._3DLabelLineSize,
1012
CustomPropertyName
.PieLineColor,
1027
CustomPropertyName
.DoughnutRadius,
1060
CustomPropertyName
.LabelStyle,
1079
CustomPropertyName
.ShowMarkerLines,
1096
CustomPropertyName
.LineTension,
1140
CustomPropertyName
.PixelPointDepth,
1154
CustomPropertyName
.PixelPointGapDepth,
1199
CustomPropertyName
.AreaDrawingStyle,
1210
CustomPropertyName
.CircularLabelsStyle,
1221
CustomPropertyName
.PolarDrawingStyle,
1240
CustomPropertyName
.AreaDrawingStyle,
1251
CustomPropertyName
.CircularLabelsStyle,
1262
CustomPropertyName
.RadarDrawingStyle,
1280
CustomPropertyName
.BoxPlotPercentile,
1293
CustomPropertyName
.BoxPlotWhiskerPercentile,
1306
CustomPropertyName
.BoxPlotShowAverage,
1317
CustomPropertyName
.BoxPlotShowMedian,
1328
CustomPropertyName
.BoxPlotShowUnusualValues,
1339
CustomPropertyName
.BoxPlotSeries,
1356
CustomPropertyName
.ErrorBarStyle,
1367
CustomPropertyName
.ErrorBarCenterMarkerStyle,
1378
CustomPropertyName
.ErrorBarSeries,
1389
CustomPropertyName
.ErrorBarType,
1406
CustomPropertyName
.UsedYValueHigh,
1419
CustomPropertyName
.UsedYValueLow,
1432
CustomPropertyName
.PriceUpColor,
1443
CustomPropertyName
.BoxSize,
1454
CustomPropertyName
.ProportionalSymbols,
1465
CustomPropertyName
.ReversalAmount,
1481
CustomPropertyName
.UsedYValue,
1494
CustomPropertyName
.PriceUpColor,
1505
CustomPropertyName
.ReversalAmount,
1521
CustomPropertyName
.UsedYValue,
1534
CustomPropertyName
.PriceUpColor,
1545
CustomPropertyName
.BoxSize,
1561
CustomPropertyName
.UsedYValue,
1574
CustomPropertyName
.PriceUpColor,
1585
CustomPropertyName
.NumberOfLinesInBreak,
1604
CustomPropertyName
.FunnelLabelStyle,
1616
CustomPropertyName
.FunnelNeckWidth,
1629
CustomPropertyName
.FunnelNeckHeight,
1642
CustomPropertyName
.FunnelMinPointHeight,
1655
CustomPropertyName
.Funnel3DRotationAngle,
1669
CustomPropertyName
.FunnelPointGap,
1682
CustomPropertyName
.Funnel3DDrawingStyle,
1694
CustomPropertyName
.FunnelStyle,
1705
CustomPropertyName
.FunnelInsideLabelAlignment,
1716
CustomPropertyName
.FunnelOutsideLabelPlacement,
1727
CustomPropertyName
.CalloutLineColor,
1744
CustomPropertyName
.PyramidLabelStyle,
1756
CustomPropertyName
.PyramidMinPointHeight,
1769
CustomPropertyName
.Pyramid3DRotationAngle,
1783
CustomPropertyName
.PyramidPointGap,
1796
CustomPropertyName
.Pyramid3DDrawingStyle,
1808
CustomPropertyName
.PyramidInsideLabelAlignment,
1819
CustomPropertyName
.PyramidOutsideLabelPlacement,
1830
CustomPropertyName
.CalloutLineColor,
1841
CustomPropertyName
.PyramidValueType,