Bar-Bell
Composition
How does a running total stack up, piece by piece? Each row lays its parts end to end with an end-cap at every step, so the cumulative reach and each segment's share both read at a glance.
Example
canvas · responsive
The chart above is the same engine in every framework - only the integration code below differs.
Usage
tsx
import { BarBellChart } from "@michi-vz/react";
export default () => <BarBellChart {...props} />; // props = the chart optionsvue
<script setup>
import { BarBellChart } from "@michi-vz/vue";
</script>
<template>
<BarBellChart :options="props" />
</template>svelte
<script>
import { barBellChart } from "@michi-vz/svelte";
</script>
<div use:barBellChart={props}></div>ts
// main.ts - register the elements once
import "@michi-vz/angular";
import { applyBarBellChartProps } from "@michi-vz/angular";
// component (uses CUSTOM_ELEMENTS_SCHEMA)
// template: <michi-vz-bar-bell-chart #c></michi-vz-bar-bell-chart>
applyBarBellChartProps(this.c.nativeElement, props);html
<script type="module" src="https://cdn.jsdelivr.net/npm/@michi-vz/wc"></script>
<michi-vz-bar-bell-chart id="c"></michi-vz-bar-bell-chart>
<script>
Object.assign(document.getElementById("c"), props); // dataSet/series, title, …
</script>ts
import { mountBarBellChart } from "@michi-vz/core";
const chart = mountBarBellChart(el, props);
chart.update(next);
chart.getContext(); // renderer-agnostic, LLM-ready
chart.destroy();API
Props are typed as BarBellChartProps in @michi-vz/core. Shared across all charts: width, height, margin, colors / colorsMapping, renderer ("svg" | "canvas"), highlightItems, disabledItems, and the on* callbacks. onChartDataProcessed / getContext() return the renderer-agnostic ChartContext.