A component that draws charts as an image, for example to send as a mail attachment.
This component is deprecated. You should not build new menu items using it.
Gets information about a chart that should be drawn.
The chart supports all numeric and date/time data types for its value-columns, not just decimal data.
Possible value | Description |
---|---|
Column | Column chart. Also known as vertical bar. |
ColumnStacked | A column chart (vertical bar) with all bars stacked. |
HorizontalBar | Horizontal bar chart. |
HorizontalBarStacked | A horizontal bar chart with all bars stacked. |
Line | Line chart. |
Pie | Pie chart. |
Custom color for this series. See Colors.
Possible value | Description |
---|---|
Line | A normal line chart. Default. |
Point | Disconnected data points. |
Range | A line that uses two y-values and colors the area between them. |
StepLine | A step line. |
Possible value | Description |
---|---|
None | Data points are not marked, only lines are drawn. Default. |
Round | The data points are indicated by circles. |
Square | The data points are indicated by squares. |
The background of the datapoints labels. Only applicable if ShowValuesAsLabel is true. See Colors.
A color for the pie slice. Overrides the palette. See Colors.
Allows you to validate the SQL parameters before any other SQL is run in the component. This call is only made if the SQL is a stored procedure and Validate parameters is checked.
Use this call to restrict which entries a user is allowed to view and edit, and to log which entries a user views.
Access to a menu item is normally controlled through functions and roles alone but some entities need more fine grained control. For example, a user may have access to the View Member menu item for normal members but not for members with a protected identity.
The menu items a user visits are always logged (in ADMINLogMenuItem) but for sensitive data you may need to log exactly what entries are viewed. Do the logging in this call as the common ways of viewing data (grid and InfoSQL) are not allowed to modify the database.
If you bind a scalar function instead of a stored procedure to this call then its name must end with '_GrantAccess'.