vue-charts
vue-charts copied to clipboard
*UNSUPPORTED* Google Charts plugin for Vue.js
``` google.charts.load('current', {'packages':['corechart']}); google.charts.setOnLoadCallback(drawChart); function drawChart() { var data = new google.visualization.DataTable(); data.addColumn('string', 'Name'); data.addColumn('number', 'Recuento'); data.addColumn({type: 'string', role: 'annotation'}, ''); data.addRows([ ['1', 2, '(0) 0%'], ['2', 2, '(34) 71%'],...
When following the installation instructions: `npm install --save-dev vue-charts` The language prop is not yet implemented. I had to clone the current repo and copy paste the dist-folder into node_modules...
Looking to add a date range selector via the google charts with their controls stuff. See here: https://developers.google.com/chart/interactive/docs/gallery/controls#5-create-control-and-chart-instances
Hello, We are Vue newbies using Vue 2.1.0 and vue-charts 0.2.1. In one of our components we have a table element, whose rows we want to be click-able: There's a...
I see in the demos that Lodash is used for a lot of the data prep before loading the data into the component, but I am wondering about adding some...
Hello, Is there a way to use `convertOptions` for charts that allow it; to use some 'beta' options like in the Bar chart for example  I'm guessing this could...
If the `options props` is changed the chart is redrawn, however the changes in the options are not reflected in the redrawn chart because the `draw` method on the `ChartWrapper`...
In the example for window resize events, you use $broadcast. That's been removed in Vue 2.x.
Hello, **Situation** Upon loading the view, I query the API for some data. My charts are using the data from Vuex as input, with empty object as a fallback. **issue**...
  rows are pushed on ready ()   Which works for several pages worth of visualizations except TreeMap. Not sure what's going on here.