cetz-plot icon indicating copy to clipboard operation
cetz-plot copied to clipboard

Create Plots and Charts with CeTZ

Results 57 cetz-plot issues
Sort by recently updated
recently updated
newest added

Cetz feature to correctly solve this issue: https://github.com/cetz-package/cetz/pull/719

See title. The new `padding:` key should not disconnect axes (scientific style) and increase the grid size.

It should be possible to set e.g. `x-min` and `x-equal: "y"` at the same time, so that `x-max` gets set to `(y-max - y-min) + x-min`. EDIT: The plot should...

:imp: bug

```typst #import "@preview/cetz:0.2.2" #import "@preview/cetz:0.2.2": canvas, plot, draw #import "@preview/statastic:0.1.0": arrayMedian, arrayStd #let style = (stroke: black, fill: rgb(0, 0, 200, 75)) #let scores = (10, 43, 55, 96, 200,...

:imp: bug

Optimize sample-fn to make the curve smoother ![sample-fn](https://github.com/user-attachments/assets/83e0967f-ca72-400f-a52d-8979d66c3c93) ``` #let sample-fn3(fn, domain, samples, sample-at: ()) = { assert(samples + sample-at.len() >= 2, message: "You must at least sample 2 values")...

:gift: feature

Add a default style dictionary for plot-data `add(...), ...)` that can be set via cetz' `set-style()` mechanism and gets inherited by default, see #45.

:gift: feature

When implementing logarithmic plots, and then when implementing polar plots, I ran into the challenge that the axis style has no control over how the data is plotted. This make...

An in-progress implementation for area charts. I'm not happy with the shape of the API (trying to figure out whether people will want to group points by series or by...