lukbukkit / chartist-plugin-tooltip

Tooltip plugin for Chartist.js
MIT License
16 stars 13 forks source link

Ready to use version? #18

Closed josephernest closed 1 year ago

josephernest commented 1 year ago

Congrats for this project! Is there a ready-to-use version, if possible on a CDN?

Something like:

<script src="https://cdnjs.cloudflare.com/ajax/libs/chartist/0.11.4/chartist.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/chartist-plugin-tooltip-updated/0.0.1/chartist-plugin-tooltip-updated.min.js"></script>

?

It would be great!

(I don't currently use npm or webpack for the minimalist project I'm working on, so a dist version would be useful)

lukbukkit commented 1 year ago

Hey, thanks for reaching out.

You should be able to include the JavaScript and CSS files with unpkg:

<link rel="stylesheet" href="https://unpkg.com/chartist-plugin-tooltips-updated@0.1.4/dist/chartist-plugin-tooltip.css">
<script src="https://unpkg.com/chartist-plugin-tooltips-updated@0.1.4/dist/chartist-plugin-tooltip.min.js"></script>

If it doesn't work, please let me know.

josephernest commented 1 year ago

Working, thanks @LukBukkit!

PS: it would be great to have a demo.html that shows a hello world example with one single line + tooltip plugin, maybe including these unpkg links.

lukbukkit commented 1 year ago

I'm glad to hear that. If I've got some spare time, I'll incorporate your ideas into the repository 👍