Options
All
  • Public
  • Public/Protected
  • All
Menu

The IPointMarkerPaletteProvider3D interface allows you to perform per-point paletting or coloring of series or data-points in 3D Scatter Charts and JavaScript 3D chart types which have a point-marker

Hierarchy

Index

Methods

onAttached

  • Called when the PaletteProvider3D instance is attached to a 3D RenderableSeries. Use this to be notified when attached and keep a reference to the parent series

    Parameters

    Returns void

onDetached

  • onDetached(): void
  • Called when the PaletteProvider3D instance is detached from a 3D RenderableSeries

    Returns void

overrideColorAbgr

  • overrideColorAbgr(xValue: number, yValue: number, zValue: number, index: number, metadata?: IPointMetadata3D): number
  • Called by SciChart and may be used to override a 3D Point-marker in Scatter or Bubble 3D Charts on a per-point basis

    Parameters

    • xValue: number

      the current XValue

    • yValue: number

      the current YValue

    • zValue: number

      the current ZValue

    • index: number

      the current index to the data

    • Optional metadata: IPointMetadata3D

      the current metadata

    Returns number

    an ABGR color code, e.g. e.g. 0xFFFF0000 would be red, or 'undefined' for default colouring

Generated using TypeDoc