The chart works great:
var context = document.getElementById('chart1').getContext('2d');
var chart1 = new Chart(context).Line({
labels: all_labels_html,
datasets: [{
fillColor: "transparent",
strokeColor: "#841354",
pointColor: "#f0ab0f",
pointStrokeColor: "#fff",
pointHighlightFill: "#841354",
pointHighlightStroke: "rgba(220,220,220,1)",
data: returnDadosFromDadosJson(dataJson, 'class', 'row-bold')
}]
}, {
scaleShowGridLines : false,
pointDotRadius: 6,
pointHitDetectionRadius: 20,
datasetStroke: true,
datasetStrokeWidth: 3,
showTooltips: true
});
But, need I add something then it will never hide?
Actually, it only display when mouse goes over. I need it to show and never more hide.
Thanks in advance.