Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class ChartEvents

    Show / Hide Table of Contents

    Class ChartEvents

    Inheritance
    System.Object
    ChartSubComponent
    ChartEvents
    Inherited Members
    ChartSubComponent.PopSubcomponent()
    ChartSubComponent.PushSubcomponent()
    ChartSubComponent.Dispose(Boolean)
    ChartSubComponent.BuildRenderTree(RenderTreeBuilder)
    ChartSubComponent.ChildContent
    Namespace: Syncfusion.Blazor.Charts
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class ChartEvents : ChartSubComponent, ISubcomponentTracker

    Constructors

    ChartEvents()

    Declaration
    public ChartEvents()

    Properties

    ChartMouseClick

    Triggers when mouse click.

    Declaration
    public Action<ChartMouseEventArgs> ChartMouseClick { get; set; }
    Property Value
    Type Description
    System.Action<ChartMouseEventArgs>

    ChartMouseDown

    Triggers when mouse down.

    Declaration
    public Action<ChartMouseEventArgs> ChartMouseDown { get; set; }
    Property Value
    Type Description
    System.Action<ChartMouseEventArgs>

    ChartMouseMove

    Triggers when mouse move.

    Declaration
    public Action<ChartMouseEventArgs> ChartMouseMove { get; set; }
    Property Value
    Type Description
    System.Action<ChartMouseEventArgs>

    ChartMouseUp

    Triggers when mouse up.

    Declaration
    public Action<ChartMouseEventArgs> ChartMouseUp { get; set; }
    Property Value
    Type Description
    System.Action<ChartMouseEventArgs>

    Loaded

    Triggers when the chart rendering completed.

    Declaration
    public Action<LoadedEventArgs> Loaded { get; set; }
    Property Value
    Type Description
    System.Action<LoadedEventArgs>

    OnAxisActualRangeCalculated

    Triggers before each axis range is rendered.

    Declaration
    public Action<AxisRangeCalculatedEventArgs> OnAxisActualRangeCalculated { get; set; }
    Property Value
    Type Description
    System.Action<AxisRangeCalculatedEventArgs>

    OnAxisLabelClick

    Triggers when x axis label clicked.

    Declaration
    public Action<AxisLabelClickEventArgs> OnAxisLabelClick { get; set; }
    Property Value
    Type Description
    System.Action<AxisLabelClickEventArgs>

    OnAxisLabelRender

    Triggers before each axis label is rendered.

    Declaration
    public Action<AxisLabelRenderEventArgs> OnAxisLabelRender { get; set; }
    Property Value
    Type Description
    System.Action<AxisLabelRenderEventArgs>

    OnAxisMultiLevelLabelRender

    Triggers while render multiLevelLabels.

    Declaration
    public Action<AxisMultiLabelRenderEventArgs> OnAxisMultiLevelLabelRender { get; set; }
    Property Value
    Type Description
    System.Action<AxisMultiLabelRenderEventArgs>

    OnCrosshairMove

    Triggers when the crosshair axis value updated.

    Declaration
    public Action<CrosshairMoveEventArgs> OnCrosshairMove { get; set; }
    Property Value
    Type Description
    System.Action<CrosshairMoveEventArgs>

    OnDataEdit

    Triggers when the point drag start.

    Declaration
    public Action<DataEditingEventArgs> OnDataEdit { get; set; }
    Property Value
    Type Description
    System.Action<DataEditingEventArgs>

    OnDataEditCompleted

    Triggers when the point drag end.

    Declaration
    public Action<DataEditingEventArgs> OnDataEditCompleted { get; set; }
    Property Value
    Type Description
    System.Action<DataEditingEventArgs>

    OnDataLabelRender

    Triggers before the data label for series is rendered.

    Declaration
    public Action<TextRenderEventArgs> OnDataLabelRender { get; set; }
    Property Value
    Type Description
    System.Action<TextRenderEventArgs>

    OnExportComplete

    Triggers after the print completed.

    Declaration
    public Action<ExportEventArgs> OnExportComplete { get; set; }
    Property Value
    Type Description
    System.Action<ExportEventArgs>

    OnLegendClick

    Triggers when the legend item is clicked.

    Declaration
    public Action<LegendClickEventArgs> OnLegendClick { get; set; }
    Property Value
    Type Description
    System.Action<LegendClickEventArgs>

    OnLegendItemRender

    Triggers before each legend item is rendered.

    Declaration
    public Action<LegendRenderEventArgs> OnLegendItemRender { get; set; }
    Property Value
    Type Description
    System.Action<LegendRenderEventArgs>

    OnMultiLevelLabelClick

    Triggers after click on multiLevelLabelClick.

    Declaration
    public Action<MultiLevelLabelClickEventArgs> OnMultiLevelLabelClick { get; set; }
    Property Value
    Type Description
    System.Action<MultiLevelLabelClickEventArgs>

    OnPointClick

    Triggers on point click.

    Declaration
    public Action<PointEventArgs> OnPointClick { get; set; }
    Property Value
    Type Description
    System.Action<PointEventArgs>

    OnPointRender

    Triggers before each points for the series is rendered.

    Declaration
    public Action<PointRenderEventArgs> OnPointRender { get; set; }
    Property Value
    Type Description
    System.Action<PointRenderEventArgs>

    OnPrintComplete

    Triggers after the print completed.

    Declaration
    public Action OnPrintComplete { get; set; }
    Property Value
    Type Description
    System.Action

    OnScrollChanged

    Triggers when change the scroll.

    Declaration
    public Action<ScrollEventArgs> OnScrollChanged { get; set; }
    Property Value
    Type Description
    System.Action<ScrollEventArgs>

    OnSelectionChanged

    Triggers after the selection is completed.

    Declaration
    public Action<SelectionCompleteEventArgs> OnSelectionChanged { get; set; }
    Property Value
    Type Description
    System.Action<SelectionCompleteEventArgs>

    OnSeriesRender

    Triggers before each series is rendered.

    Declaration
    public Action<SeriesRenderEventArgs> OnSeriesRender { get; set; }
    Property Value
    Type Description
    System.Action<SeriesRenderEventArgs>

    OnZoomEnd

    Triggers after the zoom selection is triggered.

    Declaration
    public Action<ZoomingEventArgs> OnZoomEnd { get; set; }
    Property Value
    Type Description
    System.Action<ZoomingEventArgs>

    OnZooming

    Triggers after the zoom selection is triggered.

    Declaration
    public Action<ZoomingEventArgs> OnZooming { get; set; }
    Property Value
    Type Description
    System.Action<ZoomingEventArgs>

    OnZoomStart

    Triggers after the zoom selection is triggered.

    Declaration
    public Action<ZoomingEventArgs> OnZoomStart { get; set; }
    Property Value
    Type Description
    System.Action<ZoomingEventArgs>

    SharedTooltipRender

    Triggers before the tooltip for series is rendered.

    Declaration
    public Action<SharedTooltipRenderEventArgs> SharedTooltipRender { get; set; }
    Property Value
    Type Description
    System.Action<SharedTooltipRenderEventArgs>

    SizeChanged

    Triggers after resizing of chart.

    Declaration
    public Action<ResizeEventArgs> SizeChanged { get; set; }
    Property Value
    Type Description
    System.Action<ResizeEventArgs>

    TooltipRender

    Triggers before the tooltip for series is rendered.

    Declaration
    public Action<TooltipRenderEventArgs> TooltipRender { get; set; }
    Property Value
    Type Description
    System.Action<TooltipRenderEventArgs>

    Methods

    OnParametersSet()

    Declaration
    protected override void OnParametersSet()
    Overrides
    ChartSubComponent.OnParametersSet()
    Back to top Generated by DocFX
    Copyright © 2001 - 2023 Syncfusion Inc. All Rights Reserved