mirror of
https://github.com/apache/superset.git
synced 2026-04-27 12:05:24 +00:00
chore: Disables minor ticks by default (#26310)
This commit is contained in:
committed by
GitHub
parent
8c32c6da16
commit
eb65cea971
@@ -146,6 +146,7 @@ export default function transformProps(
|
||||
markerSize,
|
||||
metrics,
|
||||
minorSplitLine,
|
||||
minorTicks,
|
||||
onlyTotal,
|
||||
opacity,
|
||||
orientation,
|
||||
@@ -456,6 +457,7 @@ export default function transformProps(
|
||||
formatter: xAxisFormatter,
|
||||
rotate: xAxisLabelRotation,
|
||||
},
|
||||
minorTick: { show: minorTicks },
|
||||
minInterval:
|
||||
xAxisType === AxisType.time && timeGrainSqla
|
||||
? TIMEGRAIN_TO_TIMESTAMP[timeGrainSqla]
|
||||
@@ -474,7 +476,7 @@ export default function transformProps(
|
||||
type: logAxis ? AxisType.log : AxisType.value,
|
||||
min: yAxisMin,
|
||||
max: yAxisMax,
|
||||
minorTick: { show: true },
|
||||
minorTick: { show: minorTicks },
|
||||
minorSplitLine: { show: minorSplitLine },
|
||||
axisLabel: {
|
||||
formatter: getYAxisFormatter(
|
||||
|
||||
Reference in New Issue
Block a user