@@ -14,8 +14,6 @@ | |||||
</p> | </p> | ||||
</div> | </div> | ||||
<section class="demo"></section> | |||||
<p align="center"> | <p align="center"> | ||||
<a href="https://travis-ci.org/frappe/charts"> | <a href="https://travis-ci.org/frappe/charts"> | ||||
<img src="https://img.shields.io/travis/frappe/charts.svg?style=flat-square"> | <img src="https://img.shields.io/travis/frappe/charts.svg?style=flat-square"> | ||||
@@ -2,7 +2,6 @@ | |||||
A chart is generally a 2D rendition of data. For example, for a set of values across items, the data could look like: | A chart is generally a 2D rendition of data. For example, for a set of values across items, the data could look like: | ||||
```js | ```js | ||||
data = { | data = { | ||||
labels: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"], | labels: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"], | ||||
datasets: [ | datasets: [ | ||||
@@ -83,11 +83,17 @@ | |||||
<script src="index.min.js"></script> | <script src="index.min.js"></script> | ||||
<script> | <script> | ||||
window.$docsify.subMaxLevel = 2; | window.$docsify.subMaxLevel = 2; | ||||
window.$docsify.search = { | |||||
placeholder: 'Search Docs ...', | |||||
noData: 'No Results', | |||||
depth: 2 | |||||
}; | |||||
</script> | </script> | ||||
<script async src="https://static.codepen.io/assets/embed/ei.js"></script> | <script async src="https://static.codepen.io/assets/embed/ei.js"></script> | ||||
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script> | <script src="//unpkg.com/docsify/lib/docsify.min.js"></script> | ||||
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script> | |||||
<script src="//unpkg.com/docsify/lib/plugins/external-script.min.js"></script> | <script src="//unpkg.com/docsify/lib/plugins/external-script.min.js"></script> | ||||
</body> | </body> | ||||
</html> | </html> |