From 259971c3d260c3fd85252ef10c77976e2e6d5d02 Mon Sep 17 00:00:00 2001 From: sbosse Date: Mon, 21 Jul 2025 23:36:06 +0200 Subject: [PATCH] Mon 21 Jul 22:43:21 CEST 2025 --- js/ui/chart/docs/axes/cartesian/logarithmic.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 js/ui/chart/docs/axes/cartesian/logarithmic.md diff --git a/js/ui/chart/docs/axes/cartesian/logarithmic.md b/js/ui/chart/docs/axes/cartesian/logarithmic.md new file mode 100644 index 0000000..4878f6b --- /dev/null +++ b/js/ui/chart/docs/axes/cartesian/logarithmic.md @@ -0,0 +1,12 @@ +# Logarithmic Cartesian Axis + +The logarithmic scale is use to chart numerical data. It can be placed on either the x or y axis. As the name suggests, logarithmic interpolation is used to determine where a value lies on the axis. + +## Tick Configuration Options + +The following options are provided by the logarithmic scale. They are all located in the `ticks` sub options. These options extend the [common tick configuration](README.md#tick-configuration). + +| Name | Type | Default | Description +| ---- | ---- | ------- | ----------- +| `min` | `number` | | User defined minimum number for the scale, overrides minimum value from data. +| `max` | `number` | | User defined maximum number for the scale, overrides maximum value from data.