libchartium
TypeScript icon, indicating that this package has built-in type declarations

0.7.69 • Public • Published

📈 libchartium 🚀

The documentation is getting ready, please check back soon!

Installation

npm add libchartium unitlib fraction.js
# or
pnpm add libchartium unitlib fraction.js
# or
bun add libchartium unitlib fraction.js

You will also need to make sure that your bundler can import WebAssembly as ES modules according to the ESM integration proposal. For Vite that means you need to add vite-plugin-wasm, for Rollup it's @rollup/plugin-wasm. In Webpack you'll have to allow asyncWebAssembly in the config.

Example

<script lang="ts">
  import { ChartiumController, ChartComponent as Chart } from 'libchartium';
  const controller = new ChartiumController();

  const xs = Array.from(
    { length: numSteps },
    (_, index) => from + index * stepSize,
  );

  const ys = Array.from({ length: 100 }, (_, idx) => ({
    id: `trace_${idx}`,
    data: Float32Array.from(
      xs.map((x) => 100 + 100 * Math.sin((x / to) * 2 * Math.PI + idx)),
    ),
  }));

  const traces = controller.addFromColumnarArrayBuffers({
    x: {
      type: "f32",
      data: Float32Array.from(xs),
    },
    y: {
      type: "f32",
      columns: ys,
    },
    style: {
      "*": { width: 2 },
      sin: { color: "red" },
    },
  });
</script>
<Chart {controller} {traces} />

/libchartium/

    Package Sidebar

    Install

    npm i libchartium

    Weekly Downloads

    56

    Version

    0.7.69

    License

    none

    Unpacked Size

    1.14 MB

    Total Files

    160

    Last publish

    Collaborators

    • c.sha
    • richard.ivanek
    • quacken8