[Vuejs]-Apexcharts crosshair tooltip

0👍

You can use CSS to customize the X-axis tooltip appearance.

.apexcharts-xaxistooltip {
  background: #1B213B;
  color: #fff;
}

Currently, there is no option to set x-axis tooltip colors in JS. Might be provided in the next releases.

Leave a comment