apexcharts / Blazor-ApexCharts

A blazor wrapper for ApexCharts.js
https://apexcharts.github.io/Blazor-ApexCharts
MIT License
803 stars 92 forks source link

How to remove or hide the points on a line? #455

Closed dineshjethoe closed 4 months ago

dineshjethoe commented 5 months ago

Hi there, How can I get rid of those circles on the line? I have set the Marker size to 0 but that does not help. See screenshot. yOhvPbwEwz

joadan commented 4 months ago

Hi,

Are you using custom tooltips? If so the markers are required for the custom tooltip to work. If that is not acceptable please use a javascript tooltip instead.

dineshjethoe commented 4 months ago

I got it working by removing the PointColor property from the ApexPointSeries with 'SeriesType="@SeriesType.Line"', 👍 . I had to use the PointColor for the Bars only.