pointStyles (getter)

Returns the list of settings for the point style of the control.

Signatures

  •    ParamateControls.<ControlName>.pointStyles

Example

 const pointStyles = ParamateControls.<ControlName>.pointStyles;
 

Return value

A list of objects that represent the point style settings:

[
   {
     radius: number;
     strokeStyle: string,
     fillStyle: string,
     lineWidth: number,
     lineDash: [number, number] | []
    },
   ...
]