nType property: ChartClientState class
Description
Use this property to return an Integer representing the new chart type as selected by the user.
The returned Integer values are:
| Numeric Value | Description |
|---|---|
|
0 |
Bar chart. |
|
4 |
Line chart. |
|
6 |
Pie chart. |
|
13 |
Horizontal bar chart |
This property is read-only.
Example
import PTCHART:ChartClientState;
Local PTCHART:ChartClientState &myObj = create PTCHART:ChartClientState("QE_CHARTPROPWRK", "QE_CHART_FIELD");
Local integer &nRet = &myObj.nType;
QE_CHARTPROP.QE_CHARTTYPE = &nRet;
Related Topics