mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[Lens] Hide the titles of the axis from the preview (#144397)
This commit is contained in:
parent
ca1c58d3df
commit
1fb018bb78
2 changed files with 4 additions and 4 deletions
|
@ -560,10 +560,10 @@ describe('heatmap', () => {
|
|||
isCellLabelVisible: [false],
|
||||
// Y-axis
|
||||
isYAxisLabelVisible: [false],
|
||||
isYAxisTitleVisible: [true],
|
||||
isYAxisTitleVisible: [false],
|
||||
// X-axis
|
||||
isXAxisLabelVisible: [false],
|
||||
isXAxisTitleVisible: [true],
|
||||
isXAxisTitleVisible: [false],
|
||||
xTitle: [''],
|
||||
yTitle: [''],
|
||||
},
|
||||
|
|
|
@ -404,11 +404,11 @@ export const getHeatmapVisualization = ({
|
|||
isCellLabelVisible: false,
|
||||
// Y-axis
|
||||
isYAxisLabelVisible: false,
|
||||
isYAxisTitleVisible: state.gridConfig.isYAxisTitleVisible,
|
||||
isYAxisTitleVisible: false,
|
||||
yTitle: state.gridConfig.yTitle ?? '',
|
||||
// X-axis
|
||||
isXAxisLabelVisible: false,
|
||||
isXAxisTitleVisible: state.gridConfig.isXAxisTitleVisible,
|
||||
isXAxisTitleVisible: false,
|
||||
xTitle: state.gridConfig.xTitle ?? '',
|
||||
}
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue