Skip to content

Commit

Permalink
Closes #31. Add point, line, area options
Browse files Browse the repository at this point in the history
  • Loading branch information
Glavin001 committed Sep 10, 2015
1 parent 27782c6 commit 124b8af
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ See http://c3js.org/examples.html for examples of how to use C3.
tooltip=tooltip
subchart=subchart
zoom=zoom
point=point
line=line
area=area
size=size
padding=padding
color=color
Expand Down
22 changes: 21 additions & 1 deletion addon/components/c3-chart.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,21 @@ export default Ember.Component.extend({
*/
zoom: {},

/**
Point
*/
point: {},

/**
Line
*/
line: {},

/**
Area
*/
area: {},

/**
Size
*/
Expand All @@ -78,7 +93,6 @@ export default Ember.Component.extend({
*/
color: {},


/**
Transition
*/
Expand Down Expand Up @@ -125,6 +139,9 @@ export default Ember.Component.extend({
'tooltip',
'subchart',
'zoom',
'point',
'line',
'area',
'size',
'padding',
'color',
Expand All @@ -144,6 +161,9 @@ export default Ember.Component.extend({
'tooltip',
'subchart',
'zoom',
'point',
'line',
'area',
'size',
'padding',
'color',
Expand Down

0 comments on commit 124b8af

Please sign in to comment.