Commit 74fa184a authored by Rodrigo Tapia-McClung's avatar Rodrigo Tapia-McClung

Remove interactivity on second radar chart legend

parent a55878b0
...@@ -236,6 +236,12 @@ const makeRadarChart = (data, months, years) => { ...@@ -236,6 +236,12 @@ const makeRadarChart = (data, months, years) => {
markerTemplate.width = 20; markerTemplate.width = 20;
markerTemplate.height = 20; markerTemplate.height = 20;
radarChart.legend.itemContainers.template.paddingTop = 0; radarChart.legend.itemContainers.template.paddingTop = 0;
// remove legend interactivity
radarChart.legend.itemContainers.template.clickable = false
radarChart.legend.itemContainers.template.focusable = false
radarChart.legend.itemContainers.template.cursorOverStyle = am4core.MouseCursorStyle.default;
} }
const makeLineChart = (data) => { const makeLineChart = (data) => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment