[Chartjs]-How to change z-index of chart js tooltip?

1👍

CSS is not used for styling tooltips in chart.js, so you can’t change the z-index.

I recommend you read the documentation on styling the tooltip at http://www.chartjs.org/docs/latest/configuration/tooltip.html

To solve your problem you will have to increase the size of the container with that chart’s canvas. In your fiddle, this means increasing the width of div class="col-md-1 col-sm-1 col-xs-1".

Leave a comment