Having trouble figuring out how to highlight a column on an area spline. I looked into Chartjs and Highcharts but couldn't find any solutions. I want to highlight the x-axis column up to the chart curve. Currently, I'm using Crosshair in my code, but it's not quite giving me the desired result.
xAxis: {
allowDecimals:false,
min: 1,
max: 12,
categories: ['', 'JAN', 'FEB', 'MAR', 'APR', 'MAY', 'JUN', 'JUL', 'AUG', 'SEP', 'OCT', 'NOV', 'DEC', ''],
labels: {
y: -10,
style: {
color: '#66717c',
fontSize: '13px'
}
},
tickWidth: 0,
lineColor: "#fff",
crosshair: {
width: 60,
color: 'rgba(73,168,222,0.5)',
zIndex: 5
}
},
yAxis: {
title: {
text: ''
},
gridLineWidth: '0',
visible: false
}
My current result is shown above, but what I need is something different. Does anyone have a solution for this issue?