score:0

try this, it should work.

var speeddata = {
labels: [0,1,2,3,4,5,6,7,8,9],
 datasets: [{
label: "btc-doge",
data: [0.00000008,0.00000042],
linetension: 0,
fill: false,
bordercolor: 'orange',
backgroundcolor: 'transparent',
borderdash: [5,5],
pointbordercolor: 'orange',
pointbackgroundcolor: 'rgba(255,150,0,0.5)',
pointradius: 5,
pointhoverradius: 10,
pointhitradius: 30,
pointborderwidth: 2,
pointstyle: 'rectrounded'
 }]
};
new chart(document.getelementbyid("line-chart"), {
  type: 'line',
  data: speeddata
});

Related Query

More Query from same tag