Package Exports
- @opendatasoft/visualizations
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@opendatasoft/visualizations) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@opendatasoft/visualizations 
This package provides components to easily build dashboards and visualizations on top of an Opendatasoft platform. An easy and convenient way to query and get data in components is to use them with the @opendatasoft/api-client package.
⚠️ This package is currently under initial development, and shouldn't be used in any project yet.
Installation
The client is available as an npm package.
With npm:
npm install @opendatasoft/visualizationsWith yarn:
yarn add @opendatasoft/visualizationsGet started
Here is a quick example of setting up a visualization as well as using the @opendatasoft/api-client package:
import { ApiClient, fromCatalog } from '@opendatasoft/api-client';
import { Chart } from '@opendatasoft/visualizations';
const container = document.getElementsByTagName('body')[0];
const client = new ApiClient({ domain: 'public' }); // FIXME: Once it's ready, we should use the domain dedicated to the documentation.
const query = fromCatalog()
.dataset('worldcitiespop')
.aggregates()
.where("country:'fr'")
.groupBy('city as x, population as y')
.orderBy('-y')
.limit(10)
.toString();
client.get(query).then(({ aggregations }) => {
new Chart(
container,
{
value: aggregations,
},
{
type: 'bar',
xAxis: 'x',
yAxis: 'y',
label: "France's most populated cities",
colorConfiguration: {
colors: [
'rgba(254,14,23,0.5)',
'rgba(54,174,23,0.5)',
'rgba(200,74,223,0.5)',
'rgba(255,255,23,0.5)',
'rgba(54,74,223,0.5)',
],
},
}
);
});⚠️ FIXME: Add CodeSandbox sample.
Contributing
This project welcomes contributions and suggestions! To do so, take a look at our Contributing Guide. It contains setup instructions, tools and scripts that can be useful if you need to work on all packages at the same time.
License
This project is licensed under the MIT license.