✨ 📝 Update Documentation
@@ -13,9 +13,10 @@
|
||||
|
||||
**vue-chartjs** is a wrapper for [Chart.js](https://github.com/chartjs/Chart.js) in vue. You can easily create reuseable chart components.
|
||||
|
||||
## Demo
|
||||
## Demo & Docs
|
||||
|
||||
[Demo](https://apertureless.github.io/vue-chartjs/)
|
||||
- [Demo](http://demo.vue-chartjs.org/)
|
||||
- [Docs](http://www.vue-chartjs.org/)
|
||||
|
||||
### Compatibility
|
||||
|
||||
|
||||
@@ -254,9 +254,27 @@ Sometimes you need more control over chart.js. Thats why you can access the char
|
||||
|
||||
</p>
|
||||
|
||||

|
||||
### Line Chart
|
||||
|
||||

|
||||
|
||||
### Doughnut
|
||||
|
||||

|
||||
|
||||
### Pie
|
||||
|
||||

|
||||
|
||||
### Radar
|
||||
|
||||

|
||||
|
||||
### Polar Area
|
||||
|
||||

|
||||
|
||||
### Bubble
|
||||
|
||||

|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
Docs
|
||||
</a>
|
||||
|
||||
<a class="landing-button" target="_blank" href="https://github.com/apertureless/vue-chartjs">
|
||||
<a class="landing-button" target="_blank" href="http://demo.vue-chartjs.org/">
|
||||
Demo
|
||||
</a>
|
||||
</div>
|
||||
|
||||
BIN
docs/assets/bar.png
Normal file
|
After Width: | Height: | Size: 95 KiB |
BIN
docs/assets/bubble.png
Normal file
|
After Width: | Height: | Size: 83 KiB |
BIN
docs/assets/doughnut.png
Normal file
|
After Width: | Height: | Size: 91 KiB |
BIN
docs/assets/line.png
Normal file
|
After Width: | Height: | Size: 125 KiB |
BIN
docs/assets/logo.png
Normal file
|
After Width: | Height: | Size: 6.7 KiB |
BIN
docs/assets/pie.png
Normal file
|
After Width: | Height: | Size: 97 KiB |
BIN
docs/assets/polar.png
Normal file
|
After Width: | Height: | Size: 200 KiB |
BIN
docs/assets/radar.png
Normal file
|
After Width: | Height: | Size: 180 KiB |
BIN
docs/assets/vue-chartjs.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
1
docs/assets/vue-chartjs.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256" viewBox="0 0 256 256"><defs><linearGradient id="a" x1="100%" x2="0%" y1="4.18%" y2="65.116%"><stop stop-color="#FAFAFA" offset="0%"/><stop stop-color="#D9D9D9" offset="100%"/></linearGradient><linearGradient id="b" x1="108.208%" x2="5.433%" y1="12.265%" y2="86.92%"><stop stop-color="#FAFAFA" offset="0%"/><stop stop-color="#D9D9D9" offset="100%"/></linearGradient></defs><g fill="none"><path fill="#fff" stroke="#EBEBEB" stroke-width="8.456" d="M128.744 13l99.745 57.46v114.921l-99.745 57.46-99.744-57.46v-114.921z"/><path fill="url(#a)" d="M129 17.941l90.395 51.432-4.057 117.675-86.903 4.653z"/><path fill="url(#b)" d="M129 17.814l-90.961 51.559-3.191 113.538 93.587 8.79z"/><path fill="#41B883" d="M32.955 72.755l95.789 54.681v110.49l-95.789-54.681z"/><path fill="#35495E" d="M224.48 71.627l-95.789 55.809v110.49l95.789-54.681z"/><path fill="#596F85" d="M224.48 71.627l-95.789 55.809v-7.892l88.445-51.299z"/><path fill="#61D09F" d="M32.955 72.755l95.789 54.681v-7.892l-89.575-50.171z"/></g></svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
@@ -14,5 +14,18 @@
|
||||
<script src="./config.js"></script>
|
||||
<script src="https://unpkg.com/docute@2/dist/docute.js"></script>
|
||||
<!-- don't remove this part end -->
|
||||
|
||||
<!-- Google Analytics -->
|
||||
<script>
|
||||
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
|
||||
ga('create', 'UA-92766713-1', 'auto');
|
||||
ga('send', 'pageview');
|
||||
docute.router.afterEach(function (to) {
|
||||
ga('set', 'page', to.fullPath);
|
||||
ga('send', 'pageview');
|
||||
});
|
||||
</script>
|
||||
<script async src='https://www.google-analytics.com/analytics.js'></script>
|
||||
<!-- End Google Analytics -->
|
||||
</body>
|
||||
</html>
|
||||
|
||||