mirror of
https://github.com/apache/superset.git
synced 2026-05-27 10:45:14 +00:00
fix(echarts): suppress phantom x-axis label at axis edge when no time grain (#39972)
This commit is contained in:
@@ -861,7 +861,8 @@ export default function transformProps(
|
||||
// boundary that formats identically to the last data-point tick (e.g.
|
||||
// "2005" appears twice with Year grain). Wrap the formatter to suppress
|
||||
// consecutive duplicate labels.
|
||||
const showMaxLabel = xAxisType === AxisType.Time && xAxisLabelRotation === 0;
|
||||
const showMaxLabel =
|
||||
xAxisType === AxisType.Time && xAxisLabelRotation === 0 && !!timeGrainSqla;
|
||||
const deduplicatedFormatter = showMaxLabel
|
||||
? (() => {
|
||||
let lastLabel: string | undefined;
|
||||
|
||||
Reference in New Issue
Block a user