Chartjs-Does bootstrap.min.JS conflict with chart.min,js?

0πŸ‘

I can observe that you are using bootstrap css file into your script tag something like this –

<script src="/template/assets/bootstrap/css/bootstrap.min.css"></script>

We can’t use stylesheets inside script tags, to load stylesheet/ CSS we need link tag as and use it inside head tag-

<link href="/template/assets/bootstrap/css/bootstrap.min.css" rel="stylesheet">

Please use this as a stylesheet and use link tag for the same.
I hope it will start to work.

let me know please in case i can help you further.
Thanks.

Leave a comment