mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[Lens][Visualize] Hides the unused dimension label from the tooltip (#143721)
This commit is contained in:
parent
610d7ea4ef
commit
eaf4e5ca2e
1 changed files with 2 additions and 2 deletions
|
@ -619,8 +619,8 @@ export const HeatmapComponent: FC<HeatmapRenderProps> = memo(
|
|||
xScale={xScale}
|
||||
ySortPredicate={yAxisColumn ? getSortPredicate(yAxisColumn) : 'dataIndex'}
|
||||
xSortPredicate={xAxisColumn ? getSortPredicate(xAxisColumn) : 'dataIndex'}
|
||||
xAxisLabelName={xAxisColumn?.name}
|
||||
yAxisLabelName={yAxisColumn?.name}
|
||||
xAxisLabelName={xAxisColumn?.name || ''}
|
||||
yAxisLabelName={yAxisColumn?.name || ''}
|
||||
xAxisTitle={args.gridConfig.isXAxisTitleVisible ? xAxisTitle : undefined}
|
||||
yAxisTitle={args.gridConfig.isYAxisTitleVisible ? yAxisTitle : undefined}
|
||||
xAxisLabelFormatter={(v) =>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue