Commit 7956308a authored by Rodrigo Tapia-McClung's avatar Rodrigo Tapia-McClung

Remove console.log call

parent 74fa184a
......@@ -161,7 +161,6 @@ const makeRadarChart = (data, months, years) => {
radarCategoryAxis.renderer.grid.template.stroke = am4core.color(mainTextColor);
let radarValueAxis = radarChart.yAxes.push(new am4charts.ValueAxis());
radarValueAxis.renderer.grid.template.stroke = am4core.color(mainTextColor);
radarValueAxis.extraMin = 0.2;
radarValueAxis.extraMax = 0.2;
radarValueAxis.tooltip.disabled = true;
......@@ -206,7 +205,6 @@ const makeRadarChart = (data, months, years) => {
// month tooltips
radarChart.cursor.events.on("cursorpositionchanged", function(ev) {
let categoryAxis = ev.target.chart.xAxes.getIndex(0);
console.log(categoryAxis.tooltip.opacity)
categoryAxis.tooltip.hide();
});
//radarCategoryAxis.startLocation = -0.0000001;
......
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