Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
Chartkick.install = function(Vue, options) {
if (options && options.adapter) {
Chartkick.addAdapter(options.adapter)
}
createComponent(Vue, "line-chart", Chartkick.LineChart)
createComponent(Vue, "pie-chart", Chartkick.PieChart)
createComponent(Vue, "column-chart", Chartkick.ColumnChart)
createComponent(Vue, "bar-chart", Chartkick.BarChart)
createComponent(Vue, "area-chart", Chartkick.AreaChart)
createComponent(Vue, "scatter-chart", Chartkick.ScatterChart)
createComponent(Vue, "geo-chart", Chartkick.GeoChart)
createComponent(Vue, "timeline", Chartkick.Timeline)
}