This extension, ckanext-charts, provides additional functionality for working with charts in CKAN. It allows users to create, manage, and visualize charts based on data stored in CKAN datasets.
The extension includes features such as chart creation, chart editing, chart embedding, and chart sharing. It also supports various chart types, including bar charts, line charts, pie charts, and more.
With ckanext-charts, users can easily generate interactive and visually appealing charts to enhance data analysis and presentation in CKAN.
This extension offers two plugins: charts_view
and charts_builder_view
. The first plugin is a standard chart builder designed for system administrators or anyone with permission to edit or create a resource view. Creating a preview using this plugin generates a static chart with saved settings. This chart retains the settings and will always be rendered in the same way.
The charts_builder_view plugin does not have any special settings during the creation or editing stages. Instead, it renders a chart builder JS widget on a resource page, allowing any user to interact with the resource data and create a chart that meets their needs. In the future, we plan to implement a feature that will allow users to save their charts.
The user chart builder could be restricted to only authenticated users. See the config settings section for more information. In this case, user will be forced to log in to build a chart. After the user logs in, user will be redirected to the chart builder page back.
Requires Redis 7+
Compatibility with core CKAN versions:
CKAN version | Compatible? |
---|---|
2.9 and earlier | no |
2.10+ | yes |
- Install it with
PyPi
withpip install ckanext-charts
- Add
charts_view
to the list of plugins in your CKAN config (ckan.plugins = charts_view charts_builder_view
)
List of config options:
# Caching strategy for chart data (required, default: redis).
# Available options: redis, file_orc, file_csv
ckanext.charts.cache_strategy = file_csv
# Time to live for the Redis cache in seconds. Set 0 to disable cache (default: 3600)
ckanext.charts.redis_cache_ttl = 7200
# Time to live for the File cache in seconds. Set 0 to disable cache.
ckanext.charts.file_cache_ttl = 0
# Enable cache for the charts (default: true)
ckanext.charts.enable_cache = true
# Include HTMX assets. Could be disabled if another plugins are including it (default: true)
ckanext.charts.include_htmx_asset
# Reinit CKAN JS modules after HTMX swap (default: false)
ckanext.charts.reinit_ckan_js_modules
# Allow anonymous users to build charts (default: false)
ckanext.charts.allow_anon_building_charts
The extension provides an admin configuration page where you can set all the listed configuration options. The admin page available only
using an extension ckanext-admin-panel
. The admin panel is a separate extension that provides an alternative admin interface for CKAN. It allows you to manage CKAN settings and other extensions settings through the web interface.
This page could be accessed by the following URL: /admin-panel/charts/config
, but it will be registered only if the ckanext-admin-panel
is installed and enabled.
The extension implement a cache strategy to store the data fetched from the different sources. There are three cache strategies available: redis
, file_orc
and file_csv
. The file cache works by storing the data in an orc
or csv
file in the filesystem. The redis cache stores the data in a Redis database. The cache strategy can be changed at the CKAN configuration level through the admin interface or in a configuration file.
The cache TTL can be set in the CKAN configuration file. The default value is 3600 seconds (1 hour). The cache TTL can be set to 0 to disable the cache.
The redis
and file-type
cache has separate TTL settings. The redis
cache TTL can be set with the ckanext.charts.redis_cache_ttl
configuration option. The file
cache TTL can be set with the ckanext.charts.file_cache_ttl
configuration option.
You need to have a Redis server running to use the redis
cache strategy.
The file-type
cache strategy stores the data in a file in the filesystem. The file cache is stored in the ckanext-charts
directory in the CKAN storage path. The file cache is stored in an orc
or csv
file format.
Cache could be disabled by setting ckanext.charts.enable_cache
to false
. In this case the data will be fetched from the source every time the chart is rendered. It could be useful for debugging purposes. But using it in production is not recommended, as it could lead to performance issues.
This strategy requires pyarrow
python library to be installed.
Fetchers are responsible for fetching data from different sources (DataStore, URL, file system, hardcoded data).
To register new fetchers, you need to create a new class that inherits from DataFetcherStrategy
and implements the fetch_data
and make_cache_key
methods.
The fetch_data
method should return a pandas
DataFrame
object with the data that should be displayed in the chart.
The make_cache_key
method should return a unique string that will be used as a key to store the data in the cache.
Implementing support for a new chart engine includes multiple steps and changes in Python, HTML, and JavaScript. Starting from the Python code:
-
Create a new builder class at
ckanext.charts.chart_builder
that inherits fromBaseChartBuilder
and implements theget_supported_forms
method. This method must return a list of classes that represent supported chart types forms. -
Each form type builder must be connected with a respective chart type builder.
-
The chart type builder must implement a
to_json
method that will return a dumped JSON data, which will be passed to a JS script. -
The form type builder must implement a
get_form_fields
method that will return a list of all form fields that will be rendered for the user, allowing them to provide all the necessary information for a chart. -
Register your chart engine by adding the builder class to
get_chart_engines
inckanext.charts.chart_builder.__init__.py
.
A full example of an implementation of bar
chart for obvervable plot
library.
from __future__ import annotations
import json
from typing import Any
import ckanext.charts.exception as exception
from ckanext.charts.chart_builders.base import BaseChartBuilder, BaseChartForm
class ObservableBuilder(BaseChartBuilder):
@classmethod
def get_supported_forms(cls) -> list[type[Any]]:
return [ObservableBarForm]
class ObservableBarBuilder(ObservableBuilder):
def to_json(self) -> str:
return json.dumps(
{
"type": "bar",
"data": self.df.to_dict(orient="records"),
"settings": self.settings,
}
)
class ObservableBarForm(BaseChartForm):
name = "Bar"
builder = ObservableBarBuilder
def fill_field(self, choices: list[dict[str, str]]) -> dict[str, str]:
field = self.color_field(choices)
field.update({"field_name": "fill", "label": "Fill"})
return field
def get_form_fields(self):
columns = [{"value": col, "label": col} for col in self.df.columns]
chart_types = [
{"value": form.name, "label": form.name}
for form in self.builder.get_supported_forms()
]
return [
self.title_field(),
self.description_field(),
self.engine_field(),
self.type_field(chart_types),
self.x_axis_field(columns),
self.y_axis_field(columns),
self.fill_field(columns),
self.opacity_field(),
self.limit_field(),
]
Another step is to register JS/CSS vendor libraries of the chart you want to use. Refer to CKAN documentation to read about adding CSS and JavaScript files using Webassets.
You also will need a CKAN JS module, that will be responsible for rendering the Chart. This module must be registered inside a webassets.yml
as well.
ckan.module("charts-render-observable", function ($, _) {
"use strict";
return {
options: {
config: null
},
initialize: function () {
$.proxyAll(this, /_/);
if (!this.options.config) {
console.error("No configuration provided");
return;
}
var plot;
switch (this.options.config.type) {
case "bar":
plot = Plot.barY(this.options.config.data, this.options.config.settings).plot();
break;
default:
return;
}
this.el[0].replaceChildren(plot);
}
};
});
And an HTML file, that will provide a proper container and include your JS module with data-module
.
{% asset "charts/observable" %}
{% if chart %}
<div id="chart-container" data-module="charts-render-observable" data-module-config="{{ chart }}"></div>
{% else %}
<p class="text-muted">
{{ _("Cannot build chart with current settings") }}
</p>
{% endif %}
Note, that we should add {% asset "charts/observable" %}
not only here, but in charts_form.html
too.
The reason for having a separate HTML
file and JS
module is that different libraries may require different types of container elements (such as div, canvas, etc.) to initialize or may need additional boilerplate code to build a chart. There's no easy way to abstract this, so you have to implement these things yourself.
To install ckanext-charts for development, activate your CKAN virtualenv and do:
git clone https://github.com/DataShades/ckanext-charts.git
cd ckanext-charts
python setup.py develop
pip install -r dev-requirements.txt
ImportError: lxml.html.clean module is now a separate project lxml_html_clean
Install lxml[html_clean]
or lxml_html_clean
directly using pip.
To run the tests, do:
pytest --ckan-ini=test.ini