"getSelectedBar"
Returns series index, row index and column index for the currently selected bar.
Synopsis
shape.getSelectedBar(int &series, int &row, int
&column);
Parameter
Parameter | Description |
---|---|
&series | Received series index |
&row | Received row index |
&column | Received column index |
Description
Returns the series index, row index and column index for the currently selected bar. In case that a selection mode where more than one bar can be selected (e.g. SelectionRowAndColumn) is active, not all values are returned. Only the values of the bar which were selected by a mouse click are returned.
Example
main()
{
int series, row, column;
BarChart3D_ewo1.getSelectedBar(series, row, column);
DebugN("series: ", series);
DebugN("row: ", row);
DebugN("column: ", column);
}
Assignment
BarChart3D-EWO