mirror of
https://github.com/chartjs/Chart.js.git
synced 2026-03-09 09:46:51 +01:00
Add x/y shorthand for padding options (#8637)
This commit is contained in:
@@ -15,7 +15,7 @@ Namespace: `options.scales[scaleId].title`, it defines options for the scale tit
|
||||
| `text` | `string`\|`string[]` | `''` | The text for the title. (i.e. "# of People" or "Response Choices").
|
||||
| `color` | [`Color`](../general/colors.md) | `Chart.defaults.color` | Color of label.
|
||||
| `font` | `Font` | `Chart.defaults.font` | See [Fonts](../general/fonts.md)
|
||||
| `padding` | `number`\|`object` | `4` | Padding to apply around scale labels. Only `top` and `bottom` are implemented.
|
||||
| `padding` | [`Padding`](../general/padding.md) | `4` | Padding to apply around scale labels. Only `top` and `bottom` are implemented.
|
||||
|
||||
## Creating Custom Tick Formats
|
||||
|
||||
|
||||
@@ -34,11 +34,11 @@ Namespace: `options.scales[scaleId].ticks`
|
||||
| Name | Type | Scriptable | Default | Description
|
||||
| ---- | ---- | ------- | ------- | -----------
|
||||
| `backdropColor` | [`Color`](../../general/colors.md) | Yes | `'rgba(255, 255, 255, 0.75)'` | Color of label backdrops.
|
||||
| `backdropPadding` | `number`\|`{top: number, bottom: number}` | | `2` | Padding of label backdrop.
|
||||
| `format` | `object` | | | The [`Intl.NumberFormat`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat) options used by the default label formatter
|
||||
| `maxTicksLimit` | `number` | | `11` | Maximum number of ticks and gridlines to show.
|
||||
| `precision` | `number` | | | if defined and `stepSize` is not specified, the step size will be rounded to this many decimal places.
|
||||
| `stepSize` | `number` | | | User defined fixed step size for the scale. [more...](#step-size)
|
||||
| `backdropPadding` | [`Padding`](../../general/padding.md) | Yes | `2` | Padding of label backdrop.
|
||||
| `format` | `object` | Yes | | The [`Intl.NumberFormat`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat) options used by the default label formatter
|
||||
| `maxTicksLimit` | `number` | Yes | `11` | Maximum number of ticks and gridlines to show.
|
||||
| `precision` | `number` | Yes | | if defined and `stepSize` is not specified, the step size will be rounded to this many decimal places.
|
||||
| `stepSize` | `number` | Yes | | User defined fixed step size for the scale. [more...](#step-size)
|
||||
| `showLabelBackdrop` | `boolean` | Yes | `true` | If true, draw a background behind the tick labels.
|
||||
|
||||
<CommonTicksAll />
|
||||
@@ -126,7 +126,7 @@ Namespace: `options.scales[scaleId].pointLabels`
|
||||
| Name | Type | Scriptable | Default | Description
|
||||
| ---- | ---- | ------- | ------- | -----------
|
||||
| `backdropColor` | [`Color`](../../general/colors.md) | `true` | `undefined` | Background color of the point label.
|
||||
| `backdropPadding` | `number`\|`{top: number, bottom: number}` | | `2` | Padding of label backdrop.
|
||||
| `backdropPadding` | [`Padding`](../../general/padding.md) | | `2` | Padding of label backdrop.
|
||||
| `display` | `boolean` | | `true` | if true, point labels are shown.
|
||||
| `callback` | `function` | | | Callback function to transform data labels to point labels. The default implementation simply returns the current string.
|
||||
| `color` | [`Color`](../../general/colors.md) | Yes | `Chart.defaults.color` | Color of label.
|
||||
|
||||
@@ -6,27 +6,4 @@ Namespace: `options.layout`, the global options for the chart layout is defined
|
||||
|
||||
| Name | Type | Default | [Scriptable](../general/options.md#scriptable-options) | Description
|
||||
| ---- | ---- | ------- | :----: | -----------
|
||||
| `padding` | `number`\|`object` | `0` | Yes | The padding to add inside the chart. [more...](#padding)
|
||||
|
||||
## Padding
|
||||
|
||||
If this value is a number, it is applied to all sides of the chart (left, top, right, bottom). If this value is an object, the `left` property defines the left padding. Similarly the `right`, `top` and `bottom` properties can also be specified.
|
||||
|
||||
Lets say you wanted to add 50px of padding to the left side of the chart canvas, you would do:
|
||||
|
||||
```javascript
|
||||
let chart = new Chart(ctx, {
|
||||
type: 'line',
|
||||
data: data,
|
||||
options: {
|
||||
layout: {
|
||||
padding: {
|
||||
left: 50,
|
||||
right: 0,
|
||||
top: 0,
|
||||
bottom: 0
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
```
|
||||
| `padding` | [`Padding`](../general/padding.md) | `0` | Yes | The padding to add inside the chart.
|
||||
|
||||
@@ -73,7 +73,7 @@ Namespace: `options.plugins.legend.title`
|
||||
| `color` | [`Color`](../general/colors.md) | `Chart.defaults.color` | Color of text.
|
||||
| `display` | `boolean` | `false` | Is the legend title displayed.
|
||||
| `font` | `Font` | `Chart.defaults.font` | See [Fonts](../general/fonts.md)
|
||||
| `padding` | `number`\|`object` | `0` | Padding around the title. If specified as a number, it applies evenly to all sides.
|
||||
| `padding` | [`Padding`](../general/padding.md) | `0` | Padding around the title.
|
||||
| `text` | `string` | | The string title.
|
||||
|
||||
## Legend Item Interface
|
||||
|
||||
@@ -16,7 +16,7 @@ Namespace: `options.plugins.title`, the global options for the chart title is de
|
||||
| `fullSize` | `boolean` | `true` | Marks that this box should take the full width/height of the canvas. If `false`, the box is sized and placed above/beside the chart area.
|
||||
| `position` | `string` | `'top'` | Position of title. [more...](#position)
|
||||
| `font` | `Font` | `{style: 'bold'}` | See [Fonts](../general/fonts.md)
|
||||
| `padding` | `number`\|`{top: number, bottom: number}` | `10` | Adds padding above and below the title text if a single number is specified. It is also possible to change top and bottom padding separately.
|
||||
| `padding` | [`Padding`](../general/padding.md) | `10` | Padding to apply around the title. Only `top` and `bottom` are implemented.
|
||||
| `text` | `string`\|`string[]` | `''` | Title text to display. If specified as an array, text is rendered on multiple lines.
|
||||
|
||||
### Position
|
||||
|
||||
@@ -31,7 +31,7 @@ Namespace: `options.plugins.tooltip`, the global options for the chart tooltips
|
||||
| `footerAlign` | `string` | `'left'` | Horizontal alignment of the footer text lines. [more...](#alignment)
|
||||
| `footerSpacing` | `number` | `2` | Spacing to add to top and bottom of each footer line.
|
||||
| `footerMarginTop` | `number` | `6` | Margin to add before drawing the footer.
|
||||
| `padding` | | `6` | Padding inside the tooltip on the 4 sides
|
||||
| `padding` | [`Padding`](../general/padding.md) | `6` | Padding inside the tooltip.
|
||||
| `caretPadding` | `number` | `2` | Extra distance to move the end of the tooltip arrow away from the tooltip point.
|
||||
| `caretSize` | `number` | `5` | Size, in px, of the tooltip arrow.
|
||||
| `cornerRadius` | `number` | `6` | Radius of tooltip corner curves.
|
||||
|
||||
68
docs/docs/general/padding.md
Normal file
68
docs/docs/general/padding.md
Normal file
@@ -0,0 +1,68 @@
|
||||
---
|
||||
title: Padding
|
||||
---
|
||||
|
||||
Padding values in Chart options can be supplied in couple of different formats.
|
||||
|
||||
### Number
|
||||
|
||||
If this value is a number, it is applied to all sides (left, top, right, bottom).
|
||||
|
||||
For exmaple, defining a 20px padding to all sides of chart:
|
||||
|
||||
```javascript
|
||||
let chart = new Chart(ctx, {
|
||||
type: 'line',
|
||||
data: data,
|
||||
options: {
|
||||
layout:
|
||||
padding: 20
|
||||
}
|
||||
}
|
||||
});
|
||||
```
|
||||
|
||||
### {top, left, bottom, right} object
|
||||
|
||||
If this value is an object, the `left` property defines the left padding. Similarly the `right`, `top` and `bottom` properties can also be specified.
|
||||
Omitted properties default to `0`.
|
||||
|
||||
Lets say you wanted to add 50px of padding to the left side of the chart canvas, you would do:
|
||||
|
||||
```javascript
|
||||
let chart = new Chart(ctx, {
|
||||
type: 'line',
|
||||
data: data,
|
||||
options: {
|
||||
layout: {
|
||||
padding: {
|
||||
left: 50
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
```
|
||||
|
||||
### {x, y} object
|
||||
|
||||
This is a shorthand for defining left/right and top/bottom to same values.
|
||||
|
||||
For example, 10px left / right and 4px top / bottom padding on a Radial Linear Axis [tick backdropPadding](../axes/radial/linear#tick-configuration):
|
||||
|
||||
```javascript
|
||||
let chart = new Chart(ctx, {
|
||||
type: 'radar',
|
||||
data: data,
|
||||
options: {
|
||||
scales: {
|
||||
r: {
|
||||
ticks: {
|
||||
backdropPadding: {
|
||||
x: 10,
|
||||
y: 4
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
```
|
||||
Reference in New Issue
Block a user