Skip to main content

constructor(processOnServer, cursorCrosshairAxisLabelElements, cursorCrosshairLineElement, crosshairElementGroups, crosshairLegendElements) Constructor

In This Article

Initializes a new object of the ASPxClientWebChartControlCustomDrawCrosshairEventArgs type with the specified settings.

#Declaration

TypeScript
constructor(
    processOnServer: boolean,
    cursorCrosshairAxisLabelElements: ASPxClientCrosshairAxisLabelElement[],
    cursorCrosshairLineElement: ASPxClientCrosshairLineElement,
    crosshairElementGroups: ASPxClientCrosshairElementGroup[],
    crosshairLegendElements: ASPxClientCrosshairLegendElement[]
)

#Parameters

Name Type Description
processOnServer boolean

true to process the event on the server side; false to completely handle it on the client side.

cursorCrosshairAxisLabelElements ASPxClientCrosshairAxisLabelElement[]

An array of ASPxClientCrosshairAxisLabelElement objects that contain the crosshair axis label elements for custom drawing a crosshair cursor.

cursorCrosshairLineElement ASPxClientCrosshairLineElement

An ASPxClientCrosshairLineElement object that contains the crosshair line element for custom drawing a crosshair cursor.

crosshairElementGroups ASPxClientCrosshairElementGroup[]

An array of ASPxClientCrosshairElementGroup objects that contain crosshair element groups for custom drawing a crosshair cursor.

crosshairLegendElements ASPxClientCrosshairLegendElement[]

An array of ASPxClientCrosshairLegendElement objects that contain crosshair legend elements for custom drawing a crosshair cursor.

See Also