Преглед на файлове

Merge pull request #206 from labtocat/master

Updated docs for es-modules like VueJS to work (import correction and including css)
tags/1.2.0
Shivam Mishra преди 6 години
committed by GitHub
родител
ревизия
4b6a558631
No known key found for this signature in database GPG ключ ID: 4AEE18F83AFDEB23
променени са 1 файла, в които са добавени 22 реда и са изтрити 0 реда
  1. +22
    -0
      README.md

+ 22
- 0
README.md Целия файл

@@ -49,6 +49,13 @@
```js ```js
import { Chart } from "frappe-charts" import { Chart } from "frappe-charts"
``` ```
...or include following for es-modules(eg:vuejs):
```js
import { Chart } from 'frappe-charts/dist/frappe-charts.esm.js'
// import css
import 'frappe-charts/dist/frappe-charts.min.css'
```


* ...or include within your HTML * ...or include within your HTML


@@ -86,6 +93,21 @@ const chart = new frappe.Chart("#chart", { // or a DOM element,
}) })
``` ```


...or for es-modules:
```js

//replace new frappe.Chart() with new Chart()
const chart = new Chart("#chart", { // or a DOM element,
// new Chart() in case of ES6 module with above usage
title: "My Awesome Chart",
data: data,
type: 'axis-mixed', // or 'bar', 'line', 'scatter', 'pie', 'percentage'
height: 250,
colors: ['#7cd6fd', '#743ee2']
})
```


If you want to contribute: If you want to contribute:


1. Clone this repo. 1. Clone this repo.


Зареждане…
Отказ
Запис