We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec7dbc2 commit a87b828Copy full SHA for a87b828
src/plotly-graph-card.ts
@@ -301,7 +301,7 @@ export class PlotlyGraph extends HTMLElement {
301
302
const layout = merge(
303
{ uirevision: true },
304
- yAxisTitles,
+ this.config.no_default_layout ? {} : yAxisTitles,
305
this.getThemedLayout(),
306
this.size,
307
this.config.layout
src/themed-layout.ts
@@ -67,7 +67,7 @@ export default function getThemedLayout(
67
size: 11,
68
},
69
xaxis: { ...themeAxisStyle },
70
- yaxis1: { ...themeAxisStyle },
+ yaxis: { ...themeAxisStyle },
71
yaxis2: { ...themeAxisStyle },
72
yaxis3: { ...themeAxisStyle },
73
yaxis4: { ...themeAxisStyle },
0 commit comments