mirror of
https://github.com/apache/superset.git
synced 2026-08-04 04:52:32 +00:00
Codecov flagged the calendar transformProps and the calendar/chord/ country-map plugin index modules as uncovered. Add plugin-registration tests (instantiate the plugin, assert v1 metadata and the buildQuery loader), a calendar transformProps test (v1 reshape plus display-option passthrough, and the non-array passthrough branch), and a calendar buildQuery case for an unrecognized subdomain granularity falling back to minutes. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
@superset-ui/plugin-chart-calendar
This plugin provides Calendar Heatmap for Superset.
Usage
Configure key, which can be any string, and register the plugin. This key will be used to
lookup this chart throughout the app.
import CalendarChartPlugin from '@superset-ui/plugin-chart-calendar';
new CalendarChartPlugin().configure({ key: 'calendar' }).register();
Then use it via SuperChart. See
storybook
for more details.
<SuperChart
chartType="calendar"
width={600}
height={600}
formData={...}
queriesData={[{
data: {...},
}]}
/>