Cuando configuro el tipo de gráfico en "LineChart" o "BarChart", la información sobre herramientas HTML personalizada funciona sin problemas, pero solo tengo 1 eje Y. Cuando cambio el tipo de gráfico a "Línea" o "Barra", aparece el segundo eje Y, pero la información sobre herramientas html ya no funciona.
¿Tengo que configurar opciones más específicas para el gráfico?
<Chart chartType="LineChart" data={data} formatters={[{ type: 'NumberFormat', column: 1 }]} width={'100%'} height={'500px'} options={{ tooltip: { isHtml: true }, colors: ['#0C79B1', '#FF7D2D'], legend: 'none', titleTextStyle: { fontSize: 20, bold: false, }, isStacked: true, series: { 0: { axis: 'Temperatur' }, }, }} />