chartStyle = {
return html`<style>
.chartTitle {
font-family: Arial,sans-serif;
font-size: 22px;
font-weight: 600;
margin-top: 2px;
margin-bottom: 2px;
line-height: 1.1;
}
.chartSubtitle {
font-family: Arial,sans-serif;
font-size: 18px;
font-weight: 500;
margin-top: 2px;
margin-bottom: 2px;
line-height: 1.1;
}
.labels {
font-family: Arial,sans-serif;
font-size: 14px;
}
.xAxisLabel {
font-family: Arial,sans-serif;
font-size: 12px;
}
.tooltip {
position: absolute;
font-family: Arial,sans-serif;
font-size: 12px;
background-color: #ffff99;
border: solid;
border-width: 1px;
border-radius: 4px;
padding: 2px;
width: 100px;
text-align: left;
}
</style> `;
}