Skip to main content
All docs
V25.1
  • TdxChartGetAxisValueLabelDrawParametersEvent Type

    The procedural type for axis label parameter customization events.

    Declaration

    TdxChartGetAxisValueLabelDrawParametersEvent = procedure(Sender: TdxChartCustomDiagram; AArgs: TdxChartGetAxisValueLabelDrawParametersEventArgs) of object;

    Parameters

    Name Type Description
    Sender TdxChartCustomDiagram

    The XY diagram that raised the axis label parameter customization event.

    Cast the Sender parameter value to the TdxChartXYDiagram class to access all public API members.

    AArgs TdxChartGetAxisValueLabelDrawParametersEventArgs

    Provides access to draw parameters of the processed axis value label in the diagram accessible through the Sender parameter.

    You can use the AArgs.Text property to change display text of the processed axis value label.

    Remarks

    Use AArgs.Axis and AArgs.Value properties to identify the processed axis value label. Refer to the TdxChartGetAxisValueLabelDrawParametersEventArgs class description for detailed information on available options.

    The OnGetAxisValueLabelDrawParameters event of an XY diagram references the TdxChartGetAxisValueLabelDrawParametersEvent procedural type.

    See Also