IAdmReportChartItem

The IAdmReportChartItem interface is used to configure report chart items.

Inheritance: IUnknown

To create an instance of a report chart item, use the IAdmReportChartMultiItem::CreateItem method.

Properties

Details

Label

Gets or sets a name of the report chart item.

  • Type:
  • string
  • Access:
  • Read/Write

ValueCalculator

Gets the IAdmReportChartItemValueCalculator interface used to generate a value for the report chart item.


Tooltip

Gets or sets a text for the optional tip of the report chart item.

  • Type:
  • string
  • Access:
  • Read/Write

Color

Gets or sets a color for the report chart item.

  • Type:
  • int
  • Access:
  • Read/Write

Remarks

The color is specified as an int value with AARRGGBB byte-ordering, where each byte represents a color component. The most significant byte, represented by AA, is the alpha component value. This byte must be always 0. The bytes represented by RR, GG, and BB are the red, green, and blue color components respectively.

Examples

  • Red - 255
  • Yellow - 65535
  • Magenta - 16711935
  • Set the property value to -1 to use the default color specified in the IAdmReportChart::Color property.

LinkedReport

Gets or sets a report related to the report chart item.


LinkedReportArguments

Gets or sets arguments for generation of the report related to the report chart item.


Requirements

Minimum required version: 2018.1

See also