idjuradj
idjuradj

Reputation: 1465

Removing pointer from tooltip in amcharts 4

Is it possible to remove pointer on tooltip in amCharts?

I know you can change orientation by setting

series.tooltip.pointerOrientation 

to one of the following

"horizontal" | "vertical" | "left" | "right" | "up" | "down"

but is it possible to remove it completley?

Upvotes: 0

Views: 634

Answers (1)

Stéphane Laurent
Stéphane Laurent

Reputation: 84519

The pointer is part of the tooltip background, which is a pointed rectangle. Its length can be set with the property pointerLength. So I would try to set the length to 0:

series.tooltip.background.pointerLength = 0;

Upvotes: 1

Related Questions