-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix(column): remove yaxis label * chore(font): include Open Sans * feat(pie): include donut widget; remove data transformation; * feat(line): adds a cheeky line chart in wrong branch :P * feat(chart): removes dummy color * feat(chart): add dirs for sparklines and stacked column * feat(chart): fix up some smart defaults * feat(chart): removes deep extend * feat(column): restores legend * feat(pie): derive legend from decorated series and render it * feat(pie): enable tooltips for now
- Loading branch information
1 parent
3981031
commit d258cab
Showing
17 changed files
with
589 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,7 @@ | ||
Basic Column Widget: | ||
|
||
<ColumnWidget widget={{ | ||
title: 'Number of page views', | ||
dateUpdated: '22 Feb 2016', | ||
series: [ | ||
{ | ||
name: 'Desktop', | ||
data: [ | ||
{id: 1, description: 'Jan 2017', value: 29.9}, | ||
{id: 2, description: 'Feb 2017', value: 71.5}, | ||
{id: 3, description: 'Mar 2017', value: 106.4}, | ||
{id: 4, description: 'Apr 2017', value: 129.2}, | ||
{id: 5, description: 'May 2017', value: 144.0}, | ||
{id: 6, description: 'Jun 2017', value: 176.0}, | ||
{id: 7, description: 'Jul 2017', value: 135.0}, | ||
{id: 8, description: 'Aug 2017', value: 148.5}, | ||
{id: 9, description: 'Sep 2017', value: 216.4}, | ||
{id: 10, description: 'Oct 2017', value: 194.1}, | ||
{id: 11, description: 'Nov 2017', value: 95.6}, | ||
{id: 12, description: 'Dec 2017', value: 54.4}, | ||
] | ||
} | ||
] | ||
}} /> | ||
title: 'Number of page views', | ||
dateUpdated: '22 Feb 2016', | ||
}} /> | ||
|
Oops, something went wrong.