You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-14Lines changed: 14 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
> FusionCharts component for Vue
4
4
5
-
FusionCharts component for Vue allows to easily include `FusionCharts` to your `Vue.js` projects.
5
+
The Vue-FusionCharts component lets you easily include FusionCharts in your Vue.js projects.
6
6
7
7
## Installation
8
8
@@ -20,7 +20,7 @@ yarn add vue-fusioncharts
20
20
21
21
### manual
22
22
23
-
Download [`vue-fusioncharts.js`](https://github.com/fusioncharts/vue-fusioncharts/blob/feature/plugin-development/dist/vue-fusioncharts.js) and include it to an HTML `<script>` tag.
23
+
Download [`vue-fusioncharts.js`](https://github.com/fusioncharts/vue-fusioncharts/blob/feature/plugin-development/dist/vue-fusioncharts.js) and include it in the HTML `<script>` tag.
Following configurations are required to initialize FusionCharts. The complete list of supported configuration option can be found in [FusionCharts' API documentation](http://www.fusioncharts.com/dev/api/fusioncharts.html).
173
+
The commonly used configurations required to initialize FusionCharts are described in the table below. The complete list of supported configurations can be found in the [FusionCharts API documentation](http://www.fusioncharts.com/dev/api/fusioncharts.html).
<td>Set the width in pixels or percent such as <code>640</code> or <code>'50%'</code>.</td>
195
+
<td>Width in pixels (for example, <code>640</code>) or percent (for example, <code>50%</code>).</td>
196
196
</tr>
197
197
<tr>
198
198
<td>height</td>
199
199
<td>String/Number</td>
200
200
<td><code>400</code></td>
201
-
<td>Set the height in pixels or percent such as <code>640</code> or <code>'50%'</code>.</td>
201
+
<td>Height in pixels (for example, <code>640</code>) or percent (for example, <code>50%</code>).</td>
202
202
</tr>
203
203
<tr>
204
204
<td>id</td>
205
205
<td>String</td>
206
206
<td><code>chart-object-*</code></td>
207
-
<td>This name is used to refer to the current chart instance after the chart has been created.</td>
207
+
<td>Name of the current chart instance, after the chart has been created.</td>
208
208
</tr>
209
209
<tr>
210
210
<td>dataFormat</td>
211
211
<td>String</td>
212
212
<td><code>JSON</code></td>
213
-
<td>This is the name of the format of data passed to the dataSource option below. Currently, <code>FusionCharts</code> accepts only <code>JSON</code> and <code>XML</code> data.</td>
213
+
<td>Format of the source data, passed to the <code>dataSource</code> attribute. Currently FusionCharts accepts data in the <code>JSON</code> and <code>XML</code> formats.</td>
214
214
</tr>
215
215
<tr>
216
216
<td>dataSource</td>
217
217
<td>String/Object</td>
218
218
<td><code>none</code></td>
219
-
<td>Provide the source of data and configuration of the chart. FusionCharts accepts data in the formats specified in dataFormats.</td>
219
+
<td>Source data/source of the chart data and the chart configuration. Currently FusionCharts accepts data in the <code>JSON</code> and <code>XML</code> formats.</td>
0 commit comments