Chart (experimental) example
With a download link
Add a download link to the original data. Doesn’t do anything clever, just creates a link to the URL passed.
How it looks (preview)
Page views chart
This chart shows page views for January in different years.
This chart is a visual representation of the data available in the table.
View data as a table
| January 2015 | January 2016 | |
|---|---|---|
| 1st | 5 | 3 |
| 2nd | 119 | 8 |
| 3rd | 74 | 37 |
| 4th | 117 | 82 |
| 5th | 33 | 118 |
| 6th | 89 | 85 |
| 7th | 79 | 80 |
How to call this example
<%= render "govuk_publishing_components/components/chart", {
download_link: "https://www.gov.uk",
heading: "Page views chart",
h_axis_title: "Day",
v_axis_title: "Views",
description: "This chart shows page views for January in different years.",
keys: [
"1st",
"2nd",
"3rd",
"4th",
"5th",
"6th",
"7th"
],
rows: [
{
label: "January 2015",
values: [
5,
119,
74,
117,
33,
89,
79
]
},
{
label: "January 2016",
values: [
3,
8,
37,
82,
118,
85,
80
]
}
]
} %>