# Chart
This module renders a dataset as an HTML-based chart representing the data.
## Usage
```jsx
// import the component
import ElementChart from 'calypso/my-sites/chart';
// And use it inline inside the render method of another component
function render() {
return (
);
}
// Example Data Array
/*
[ {
'label': , // x-axis label
'value': , // bar value
'nestedValue': , // nested bar value or null if no nested bar
'className': , // classname(s) applied to bar container
'data':