Answers for "chart js line color"

1

chartjs random color line

const r = Math.round (Math.random () * 255);
const g = Math.round (Math.random () * 255);
const b = Math.round (Math.random () * 255);

// some examples on where and how to use it
config.data.datasets.borderColor = `rgb (${r}, ${g}, ${b})`;
config.data.datasets.backgroundColor = `rgb (${r}, ${g}, ${b})`;
config.options.scales.yAxes.ticks.fontColor = `rgb(${r}, ${g}, ${b})`;
Posted by: Guest on November-13-2020
3

chartjs lineTension

options{	
	elements: {
        line: {
            tension: 0 // disables bezier curves
        }
	},
}
Posted by: Guest on June-15-2020
1

chartjs line color

backgroundColor: '',
borderColor: ''
Posted by: Guest on November-04-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language