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
To attach event listeners to FusionCharts, you can use the `v-on` or `@` operator in the vue-fusioncharts component.
217
+
218
+
```html
219
+
<fusioncharts
220
+
:type="type"
221
+
:width="width"
222
+
:height="height"
223
+
:dataFormat="dataFormat"
224
+
:dataSource="dataSource"
225
+
@eventName="eventHandler">
226
+
</fusioncharts>
227
+
```
214
228
215
229
## Contributing
216
230
@@ -227,10 +241,7 @@ $ npm start
227
241
```
228
242
229
243
### [Demos and Documentation](https://fusioncharts.github.io/vue-fusioncharts/)
230
-
<<<<<<< HEAD
231
244
232
245
> ### Using Legacy Webpack Templates
233
246
> If you are using legacy webpack templates using (ex: `vue init webpack-simple myProject`), you need to use the new UglifyJS webpack plugin as the default plugin doesn't support ES5+ syntaxes.
234
247
> Refer here on what to change in the webpack.config.js: https://github.com/vuejs-templates/webpack-simple/issues/166#issuecomment-354394253
0 commit comments