<< Click to Display Table of Contents >> ChartRow |
(Chart Property) For Pie Chart only. Selects the row of the Chart Data object which shall be used by a pie chart. A Pie Chart can only visualize one row of data.
property long VPE.ChartRow
write; runtime only
Possible Values:
the row that shall be visualized by a Pie Chart
Default:
0 ( = the pie chart is created out of the first row of the Chart Data object)
Example:
ActiveX / VCL:
Doc.ChartRow = 0
Doc.Chart(1, 1, -18, -18, hData, VCHART_3D_PIE)
.NET:
Doc.ChartRow = 0
Doc.Chart(1, 1, -18, -18, Data, ChartType.Pie3D)
Creates a 3D Pie Chart from the 1st row of a Chart Data object.
ActiveX / VCL:
Doc.ChartRow = 1
Doc.Chart(1, 1, -18, -18, hData, VCHART_PIE)
.NET:
Doc.ChartRow = 1
Doc.Chart(1, 1, -18, -18, Data, ChartType.Pie)
Creates a 2D Pie Chart from the 2nd row of a Chart Data object.