We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc1690f commit e36a1c2Copy full SHA for e36a1c2
1 file changed
superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx
@@ -241,10 +241,12 @@ function createAxisControl(axis: 'x' | 'y'): ControlSetRow[] {
241
name: 'truncateYAxis',
242
config: {
243
type: 'CheckboxControl',
244
- label: t('Truncate Axis'),
+ label: t('Truncate Y Axis'),
245
default: truncateYAxis,
246
renderTrigger: true,
247
- description: t('It’s not recommended to truncate axis in Bar chart.'),
+ description: t(
248
+ 'It’s not recommended to truncate Y axis in Bar chart.',
249
+ ),
250
visibility: ({ controls }: ControlPanelsContainerProps) =>
251
isXAxis ? isHorizontal(controls) : isVertical(controls),
252
disableStash: true,
0 commit comments