Interface for a series which contains individually sizeable an rotatable points

Public

Hierarchy

  • IndividualPointed

Implemented by

Methods

  • Gets if individual point rotation is enabled or not.

    Returns boolean

  • Gets if individual point sizing is enabled or not.

    Returns boolean

  • Enable or disable individual point rotation.

    When enabled, rotation for each point can be provided with the location of the point.

    pointSeries.add({x: 1, y: 2, rotation: 45 })
    

    Parameters

    • enabled: boolean

      Boolean state for individual point size enabled

    Returns IndividualPointed

  • Enable or disable individual point sizing.

    When enabled, size for each point can be provided with the location of the point.

    pointSeries.add({x: 1, y: 2, size: 10 })
    

    Parameters

    • enabled: boolean

      Boolean state for individual point size enabled

    Returns IndividualPointed