ManualChartEntry(Value, MakeNull=true/false)

Creates a chart where the data is not contained in a Sage CRM table.

It enables data to be hardcoded into a chart without relying on it being in a table. The parameters passed vary depending on the style of table in use (for example, bar).

Parameters
  • Value. Sets a value for a chart entry. This parameter accepts a WideString value.
  • MakeNull. Defines whether the corresponding chart entry is blank. Accepts one of the following values:
    • True
    • False
Examples

ChartGraph.ManualChartEntry('10,Jan',false);

ChartGraph.ManualChartEntry('10,Feb',false);

ChartGraph.ManualChartEntry('+5,Feb',false);

ChartGraph.ManualChartEntry('20,Mar',false);

ChartGraph.ManualChartEntry('30,Apr',false);

ChartGraph.ManualChartEntry('-5,Apr',false)