You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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"}}
46
61
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.
48
65
Series with the same `stack` will be stacked on top of each other.
49
66
50
67
{{"demo": "StackBars.js"}}
@@ -57,26 +74,6 @@ By default, they are stacked in the order you defined them, with positive values
57
74
58
75
For more information, see [stacking docs](/x/react-charts/stacking/).
59
76
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
-
80
77
### Grid
81
78
82
79
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
85
82
86
83
{{"demo": "GridDemo.js"}}
87
84
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
-
103
85
### Border radius
104
86
105
87
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,
108
90
109
91
{{"demo": "BorderRadius.js"}}
110
92
111
-
## Labels
93
+
###Labels
112
94
113
95
You can display labels on the bars.
114
96
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.
117
99
118
100
{{"demo": "BarLabel.js"}}
119
101
120
-
### Custom labels
102
+
####Custom labels
121
103
122
104
You can display, change, or hide labels based on conditional logic.
123
105
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
127
109
128
110
{{"demo": "CustomLabels.js"}}
129
111
130
-
##Click event
112
+
### Animation
131
113
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 />
133
122
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.
135
164
-`onAxisClick` for a click anywhere in the chart
136
165
137
166
They both provide the following signature.
@@ -153,7 +182,7 @@ Their is a slight difference between the `event` of `onItemClick` and `onAxisCli
153
182
154
183
:::
155
184
156
-
### Composition
185
+
### With composed Bar Charts
157
186
158
187
If you're using composition, you can get those click event as follows.
159
188
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
165
194
</ChartContainer>
166
195
```
167
196
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).
0 commit comments