How to always show tooltip BUT with 2 datasets for line chart?
Here is jsfiddle which works with one dataset.
My tooltip code is:
var options = 
{
    tooltipTemplate: "<%= value %>",
    showTooltips: true,
    onAnimationComplete: function()
    {    
        this.showTooltip(this.datasets[0].points, true);          
    },
    tooltipEvents: []
}
And in same appirience I would like to have with 2,3 or more datasets.
Here is jsfiidle where I tried 2 datasets.
I guess, this line has something to do with it:
this.showTooltip(this.datasets[0].points, true);