-
Notifications
You must be signed in to change notification settings - Fork 130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
materialDesign attribute for Material Design Charts #39
Changes from all commits
6ee7f49
e2f7387
2300c57
e25434d
85ed24d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -184,6 +184,16 @@ <h2>Chart gallery</h2> | |
rows='[["Jan", 31],["Feb", 28],["Mar", 31],["Apr", 30],["May", 31],["Jun", 30]]'> | ||
</google-chart> | ||
|
||
<p>Here's a Material Design bar chart:</p> | ||
|
||
<google-chart | ||
type='bar' | ||
options='{"title": "Days in a month"}' | ||
cols='[{"label": "Month", "type": "string"},{"label": "Days", "type": "number"}]' | ||
rows='[["Jan", 31],["Feb", 28],["Mar", 31],["Apr", 30],["May", 31],["Jun", 30]]' | ||
materialDesign> | ||
</google-chart> | ||
|
||
<p>Here's a bubble chart:</p> | ||
|
||
<google-chart | ||
|
@@ -224,6 +234,16 @@ <h2>Chart gallery</h2> | |
rows='[["Jan", 31],["Feb", 28],["Mar", 31],["Apr", 30],["May", 31],["Jun", 30]]'> | ||
</google-chart> | ||
|
||
<p>Here's a Material Design column chart:</p> | ||
|
||
<google-chart | ||
type='column' | ||
options='{"title": "Days in a month"}' | ||
cols='[{"label": "Month", "type": "string"},{"label": "Days", "type": "number"}]' | ||
rows='[["Jan", 31],["Feb", 28],["Mar", 31],["Apr", 30],["May", 31],["Jun", 30]]' | ||
materialDesign> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
</google-chart> | ||
|
||
<p>Here's a combo chart:</p> | ||
|
||
<google-chart | ||
|
@@ -268,6 +288,16 @@ <h2>Chart gallery</h2> | |
rows='[["Jan", 31],["Feb", 28],["Mar", 31],["Apr", 30],["May", 31],["Jun", 30]]'> | ||
</google-chart> | ||
|
||
<p>Here's a Material Design line chart:</p> | ||
|
||
<google-chart | ||
type='line' | ||
options='{"title": "Days in a month"}' | ||
cols='[{"label": "Month", "type": "string"},{"label": "Days", "type": "number"}]' | ||
rows='[["Jan", 31],["Feb", 28],["Mar", 31],["Apr", 30],["May", 31],["Jun", 30]]' | ||
materialDesign> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same |
||
</google-chart> | ||
|
||
<p>Here's a pie chart:</p> | ||
|
||
<google-chart | ||
|
@@ -290,6 +320,20 @@ <h2>Chart gallery</h2> | |
[68, 15]]'> | ||
</google-chart> | ||
|
||
<p>Here's a Material Design scatter chart:</p> | ||
|
||
<google-chart | ||
type='scatter' | ||
options='{"legend": "none"}' | ||
data='[["A", "B"], | ||
[20, 45], | ||
[31, 66], | ||
[50, 80], | ||
[77, 50], | ||
[68, 15]]' | ||
materialDesign> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same |
||
</google-chart> | ||
|
||
<p>Here's a stepped area chart:</p> | ||
|
||
<google-chart | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
material-design