You could display your date as an annotation on your x or y axis.
Here is how you could do it in your chart options (on the x axis so displayed vertically on your chart) :
annotations: {
xaxis: [
{
x: new Date().getTime(),
borderColor: '#00E396',
label: {
borderColor: '#00E396',
style: {
color: '#fff',
background: '#00E396'
},
text: "Today"
}
}
]
}