Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/denoland/fresh_charts

A server-side-rendered charting library for Fresh
https://github.com/denoland/fresh_charts

charting-library chartjs charts deno fresh

Last synced: 27 days ago
JSON representation

A server-side-rendered charting library for Fresh

Awesome Lists containing this project

README

        

# fresh_charts

A charting library for Fresh based on [Chart.js](https://www.chartjs.org/),
which supports server and client side rendering.

## Usage

There are several ways to render a chart.

For server side rendering there is the JSX/TSX component `Chart` which can be
used to inline a chart on a page, and the `renderChart()` function which can be
used to respond in a handler with an SVG image.

For client side rendering there is also a JSX/TSX island component `Chart`.

### [SSR] Inline chart example

This provides a chart rendered within the router page itself.

```tsx
import { Head } from "$fresh/runtime.ts";
import { Chart } from "$fresh_charts/mod.ts";
import { ChartColors, transparentize } from "$fresh_charts/utils.ts";

export default function Home() {
return (
<>

Example Chart




>
);
}
```

### [SSR] Responding as an image

This route will provide the landing page of the site, which has an image link to
a route, which will send a request to `/routes/chart.ts` to render the chart.

**/routes/index.tsx**

```tsx
import { Head } from "$fresh/runtime.ts";
import { Chart } from "$fresh_charts/mod.ts";
import { ChartColors, transparentize } from "$fresh_charts/utils.ts";

export default function Home() {
return (
<>

Example Chart


an example chart provided as an image

>
);
}
```

**/routes/chart.ts**

```ts
import { type Handlers } from "$fresh/server.ts";
import { renderChart } from "$fresh_charts/mod.ts";
import { ChartColors, transparentize } from "$fresh_charts/utils.ts";

export const handler: Handlers = {
GET() {
return renderChart({
type: "line",
data: {
labels: ["1", "2", "3"],
datasets: [
{
label: "Sessions",
data: [123, 234, 234],
borderColor: ChartColors.Red,
backgroundColor: transparentize(ChartColors.Red, 0.5),
borderWidth: 1,
},
{
label: "Users",
data: [346, 233, 123],
borderColor: ChartColors.Blue,
backgroundColor: transparentize(ChartColors.Blue, 0.5),
borderWidth: 1,
},
],
},
options: {
devicePixelRatio: 1,
scales: { y: { beginAtZero: true } },
},
});
},
};
```

### [CSR] Inline chart example

This provides a client side rendered and interactive chart island within the
router page itself.

**/islands/chart.tsx**

```tsx
import { Chart } from "$fresh_charts/island.tsx";
export default Chart;
```

**/routes/index.tsx**

```tsx
import { Head } from "$fresh/runtime.ts";
import { ChartColors } from "$fresh_charts/utils.ts";
import Chart from "../islands/chart.tsx";

export default function Home() {
return (
<>

Example Chart




>
);
}
```

---

Copyright 2018-2023 the Deno authors. All rights reserved. MIT Licensed.