Cloudflare fetched the original article and streamed it through HTMLRewriter to apply an entirely new visual system without rebuilding the source page.
// request.cf · coarse context
A page that knows where it met you.
Only coarse request metadata is shown. This demo does not display or persist visitor IP addresses.
A parameter called height specifies the internal height of the bar in a vertical bar chart.
{{Data bars/bar| color = green
| height = 60
}}
A parameter called width specifies the width of the bar in a horizontal bar chart.
{{Data bars/bar| color = yellow
| width = 60
}}
Height and width cannot be used together. However, if bars of a different width are desired in a vertical bar chart, or bars of a different height are desired in a horizontal bar chart, a parameter called size can be used.
{{Data bars/bar| width = 80
| label = Apples
| value = 80,000
}}
80,000
Apples
The value does not have to be a number.
However, for the sake of simplicity in a vertical bar chart (only), the height can be omitted if a numerical value is provided.
{||-style="vertical-align:bottom;"|{{Data bars/bar| value = 80}}|{{Data bars/bar| value = 23}}|{{Data bars/bar| value = 42}}|{{Data bars/bar| value = 13}}|{{Data bars/bar| value = 66}}|}
A name is the final type of label that is available. Just like a value, it has a smaller font-size and might be used to display a number represented by the bar.
The only difference is its placement. The name, if any, is displayed to the right of the bar in a vertical bar chart, and above the bar in a horizontal bar chart.
{{Data bars/bar| height = 80
| name = 80,000
}}
80,000
{{Data bars/bar| width = 80
| name = 80,000
}}
80,000
A name, instead of a label, may be useful when stacking bars.
'''Apples'''{{Data bars/bar| height = 50
| color = red
| name = Florida
}}{{Data bars/bar| height = 80
| color = green
| name = California
}}{{Data bars/bar| height = 40
| color = blue
| name = Oregon
}}
Apples
Florida
California
Oregon
But a stacked color key is usually better. (Notice how in the main stack only the bottom bar is given a label.)
By default, the color of a bar is displayed as text when the cursor is pointed at the bar. This is helpful to persons with color blindness.
However, you can override the default and provide even more helpful information by specifying a "title" for the bar.
{{Data bars/bar| width = 50| color = red | name = Florida | title = 50}}{{Data bars/bar| width = 80| color = green | name = California| title = 80}}{{Data bars/bar| width = 40| color = blue | name = Oregon | title = 40}}
Florida
California
Oregon
This may be especially handy in a color key, to display totals, for example.
{{Data bars/bar|color=red |name=Florida | title = 5000}}{{Data bars/bar|color=green |name=California| title = 8000}}{{Data bars/bar|color=blue |name=Oregon | title = 4000}}
Florida
California
Oregon
Alternatively, a title can be appended parenthetically to a name by setting a parameter called detailed.
If you are creating a template, such as Data bars, this adds some flexibility by allowing you to use the title parameter to display more detailed information about a bar right on the page while leaving the default as it was.
{{Data bars/bar|color=red |name=Florida | title = 7000| detailed=true}}{{Data bars/bar|color=green |name=California| title = 8000| detailed=true}}{{Data bars/bar|color=blue |name=Oregon | title = 6000| detailed=true}}