Api dataLabelSettings in EJ2 TypeScript Chart control

8 May 20231 minute to read

Configures the data label in the series.

Properties

alignment string

Specifies the alignment for data Label. They are,

  • Near: Aligns the label to the left of the point.
  • Center: Aligns the label to the center of the point.
  • Far: Aligns the label to the right of the point.

Defaults to ‘Center’

border BorderModel

Option for customizing the border lines.

fill string

The background color of the data label accepts value in hex and rgba as a valid CSS color string.

Defaults to ‘transparent’

font FontModel

Option for customizing the data label text.

margin MarginModel

Margin configuration for the data label.

name string

The DataSource field that contains the data label value.

Defaults to null

opacity number

The opacity for the background.

Defaults to 1

position string

Specifies the position of the data label. They are,

  • Outer: Positions the label outside the point.
  • top: Positions the label on top of the point.
  • Bottom: Positions the label at the bottom of the point.
  • Middle: Positions the label to the middle of the point.
  • Auto: Positions the label based on series.

Defaults to ‘Auto’

rx number

The roundedCornerX for the data label. It requires border values not to be null.

Defaults to 5

ry number

The roundedCornerY for the data label. It requires border values not to be null.

Defaults to 5

template string

Custom template to show the data label. Use ${point.x} and ${point.y} as a placeholder text to display the corresponding data point.

Defaults to null

visible boolean

If set true, data label for series renders.

Defaults to false