Added bubble chart type

This commit is contained in:
Juan Carlos Alonso
2016-09-07 22:50:18 +01:00
parent 9bf6e6078d
commit 3785e73b43
2 changed files with 54 additions and 1 deletions

View File

@@ -4,6 +4,7 @@ import Line from './BaseCharts/Line'
import Pie from './BaseCharts/Pie'
import PolarArea from './BaseCharts/PolarArea'
import Radar from './BaseCharts/Radar'
import Bubble from './BaseCharts/Bubble'
const VueCharts = {
Bar,
@@ -11,7 +12,8 @@ const VueCharts = {
Line,
Pie,
PolarArea,
Radar
Radar,
Bubble
}
module.exports = VueCharts