|
|
|
|
|
- Overview
- Displaying a chart
- Programming
- Disabling charts
- Displaying the chart
AAF: Chart on a table column
When a table column is a Numeric column, the end user can create a chart on the column data and therefore benefit from the power of charts created with WINDEV. To create a chart from the data found in a column (table or TreeView Table): - Open the context menu of the requested column.
- Select "Chart".
- The chart created from the data found in the column is automatically displayed in a new window. The features in the context menu of the chart allow you to display the data according to your own requirements. For more details, see Handling the Chart controls at runtime (AAF).
Remark: You cannot select the columns that will be included in the chart. To choose some specific columns of the Table control, we advise you to create a new chart from the Table control. This chart will be displayed in a window for example. Disabling charts To disable the option to create charts, simply use AAFDisable with the aafChart constant. Displaying the chart To display the chart of a table column through programming, simply use AAFExecute with the aafChart constant. Example: AAFExecute(TABLE_Stat.COL_Result2016, aafChart)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|