Is there a way I can make the tooltip scrollable for my stackedColumn chart?
I tried doing:
::ng-deep .canvasjs-chart-tooltip{
/*right: 5px !important;*/
/*left: auto !important;*/
/*top: 5px !important;*/
/*bottom: auto !important;*/
height: 100px !important;
overflow-y: scroll !important;
}
in my CSS file, and I also tried setting the style in my toolTipContent:
datasets.push({ type: ‘stackedColumn’, showInLegend: true, name: ‘xx’, toolTipContent: ‘<div style=”overflow-y: scroll !important”>{name}</div>’, dataPoints: dataPoints});