Skip to content

Commit 9ae5e03

Browse files
first pass on bar
1 parent 14f35be commit 9ae5e03

File tree

1 file changed

+78
-64
lines changed

1 file changed

+78
-64
lines changed

docs/data/charts/bars/bars.md

+78-64
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,26 @@ components: BarChart, BarChartPro, BarElement, BarPlot, ChartsGrid, BarLabel
88

99
<p class="description">Bar charts express quantities through a bar's length, using a common baseline.</p>
1010

11+
{{"component": "@mui/docs/ComponentLinkHeader", "design": false}}
12+
13+
## Introduction
14+
15+
TK
16+
1117
## Basics
1218

13-
Bar charts series should contain a `data` property containing an array of values.
19+
```tsx
20+
import { BarChart } from '@mui/x-charts/BarChart';
21+
```
22+
23+
Bar chart series should contain a `data` property containing an array of values.
1424

1525
You can customize bar ticks with the `xAxis`.
1626
This axis might have `scaleType='band'` and its `data` should have the same length as your series.
1727

1828
{{"demo": "BasicBars.js"}}
1929

20-
### Using a dataset
30+
### Dataset helper
2131

2232
If your data is stored in an array of objects, you can use the `dataset` helper prop.
2333
It accepts an array of objects such as `dataset={[{x: 1, y: 32}, {x: 2, y: 41}, ...]}`.
@@ -28,9 +38,9 @@ For example `xAxis={[{ dataKey: 'x'}]}` or `series={[{ dataKey: 'y'}]}`.
2838

2939
{{"demo": "BarsDataset.js"}}
3040

31-
## Bar size
41+
### Bar size
3242

33-
You can define bar dimensions with `categoryGapRatio` and `barGapRatio` properties.
43+
You can define bar dimensions with `categoryGapRatio` and `barGapRatio` props.
3444

3545
The `categoryGapRatio` defines the gap between two categories.
3646
The ratio is obtained by dividing the size of the gap by the size of the category (the space used by bars).
@@ -42,9 +52,16 @@ And a value of `-1` will make bars overlap on top of each other.
4252

4353
{{"demo": "BarGapNoSnap.js", "hideToolbar": true, "bg": "playground"}}
4454

45-
## Stacking
55+
### Bar direction
56+
57+
Bar charts can be rendered with a horizontal layout by providing the `layout="horizontal"` prop.
58+
If you're using [composition](/x/react-charts/composition/), you should set the property `layout: 'horizontal'` to each bar series object.
59+
60+
{{"demo": "HorizontalBars.js"}}
4661

47-
Each bar series can get a `stack` property expecting a string value.
62+
### Stacking
63+
64+
Each bar series can get a `stack` prop expecting a string value.
4865
Series with the same `stack` will be stacked on top of each other.
4966

5067
{{"demo": "StackBars.js"}}
@@ -57,26 +74,6 @@ By default, they are stacked in the order you defined them, with positive values
5774

5875
For more information, see [stacking docs](/x/react-charts/stacking/).
5976

60-
## Layout
61-
62-
### Bar direction
63-
64-
Bar charts can be rendered with a horizontal layout by providing the `layout="horizontal"` prop.
65-
If you're using [composition](/x/react-charts/composition/), you should set the property `layout: 'horizontal'` to each bar series object.
66-
67-
{{"demo": "HorizontalBars.js"}}
68-
69-
### Tick placement
70-
71-
When using a `"band"` scale, the axis has some additional customization properties about the tick position.
72-
73-
- `tickPlacement` for the position of ticks
74-
- `tickLabelPlacement` for the position of the label associated with the tick
75-
76-
You can test all configuration options in the following demo:
77-
78-
{{"demo": "TickPlacementBars.js"}}
79-
8077
### Grid
8178

8279
You can add a grid in the background of the chart with the `grid` prop.
@@ -85,21 +82,6 @@ See [Axis—Grid](/x/react-charts/axis/#grid) documentation for more information
8582

8683
{{"demo": "GridDemo.js"}}
8784

88-
### Color scale
89-
90-
As with other charts, you can modify the [series color](/x/react-charts/styling/#colors) either directly, or with the color palette.
91-
92-
You can also modify the color by using axes `colorMap` which maps values to colors.
93-
The bar charts use by priority:
94-
95-
1. The value axis color
96-
2. The band axis color
97-
3. The series color
98-
99-
Learn more about the `colorMap` properties in the [Styling docs](/x/react-charts/styling/#values-color).
100-
101-
{{"demo": "ColorScale.js"}}
102-
10385
### Border radius
10486

10587
To give your bar chart rounded corners, you can change the value of the `borderRadius` property on the [BarChart](/x/api/charts/bar-chart/#bar-chart-prop-slots).
@@ -108,7 +90,7 @@ It works with any positive value and is properly applied to horizontal layouts,
10890

10991
{{"demo": "BorderRadius.js"}}
11092

111-
## Labels
93+
### Labels
11294

11395
You can display labels on the bars.
11496
To do so, the `BarChart` or `BarPlot` accepts a `barLabel` property.
@@ -117,7 +99,7 @@ Or you can pass `'value'` to display the raw value of the bar.
11799

118100
{{"demo": "BarLabel.js"}}
119101

120-
### Custom labels
102+
#### Custom labels
121103

122104
You can display, change, or hide labels based on conditional logic.
123105
To do so, provide a function to the `barLabel`.
@@ -127,11 +109,58 @@ In the example we display a `'High'` text on values higher than 10, and hide val
127109

128110
{{"demo": "CustomLabels.js"}}
129111

130-
## Click event
112+
### Animation
131113

132-
Bar charts provides two click handlers:
114+
To skip animation at the creation and update of your chart, you can use the `skipAnimation` prop.
115+
When set to `true` it skips animation powered by `@react-spring/web`.
116+
117+
Charts containers already use the `useReducedMotion()` from `@react-spring/web` to skip animation [according to user preferences](https://react-spring.dev/docs/utilities/use-reduced-motion#why-is-it-important).
118+
119+
```jsx
120+
// For a single component chart
121+
<BarChart skipAnimation />
133122

134-
- `onItemClick` for click on a specific bar.
123+
// For a composed chart
124+
<ChartContainer>
125+
<BarPlot skipAnimation />
126+
</ChartContainer>
127+
```
128+
129+
{{"demo": "BarAnimation.js"}}
130+
131+
## Customization
132+
133+
### Tick placement
134+
135+
When using a `"band"` scale, the axis has some additional customization properties about the tick position.
136+
137+
- `tickPlacement` for the position of ticks
138+
- `tickLabelPlacement` for the position of the label associated with the tick
139+
140+
You can test all configuration options in the following demo:
141+
142+
{{"demo": "TickPlacementBars.js"}}
143+
144+
### Color scale
145+
146+
As with other charts, you can modify the [series color](/x/react-charts/styling/#colors) either directly, or with the color palette.
147+
148+
You can also modify the color by using axes `colorMap` which maps values to colors.
149+
The bar charts use by priority:
150+
151+
1. The value axis color
152+
2. The band axis color
153+
3. The series color
154+
155+
Learn more about the `colorMap` properties in the [Styling docs](/x/react-charts/styling/#values-color).
156+
157+
{{"demo": "ColorScale.js"}}
158+
159+
### Click events
160+
161+
Bar charts provide two click handlers:
162+
163+
- `onItemClick` for a click on a specific bar.
135164
- `onAxisClick` for a click anywhere in the chart
136165

137166
They both provide the following signature.
@@ -153,7 +182,7 @@ Their is a slight difference between the `event` of `onItemClick` and `onAxisCli
153182

154183
:::
155184

156-
### Composition
185+
### With composed Bar Charts
157186

158187
If you're using composition, you can get those click event as follows.
159188
Notice that the `onAxisClick` will handle both bar and line series if you mix them.
@@ -165,21 +194,6 @@ Notice that the `onAxisClick` will handle both bar and line series if you mix th
165194
</ChartContainer>
166195
```
167196

168-
## Animation
169-
170-
To skip animation at the creation and update of your chart, you can use the `skipAnimation` prop.
171-
When set to `true` it skips animation powered by `@react-spring/web`.
172-
173-
Charts containers already use the `useReducedMotion()` from `@react-spring/web` to skip animation [according to user preferences](https://react-spring.dev/docs/utilities/use-reduced-motion#why-is-it-important).
197+
## Composition
174198

175-
```jsx
176-
// For a single component chart
177-
<BarChart skipAnimation />
178-
179-
// For a composed chart
180-
<ChartContainer>
181-
<BarPlot skipAnimation />
182-
</ChartContainer>
183-
```
184-
185-
{{"demo": "BarAnimation.js"}}
199+
TK

0 commit comments

Comments
 (0)