chartjs line disable shadow

Solutions on MaxInterview for chartjs line disable shadow by the best coders in the world

showing results for - "chartjs line disable shadow"
Anna
29 Sep 2018
1options: {
2	responsive: true,
3	maintainAspectRatio: false,
4	elements: {
5		line: {
6          	tension: 0,
7            // shadow / fill
8			fill: false
9        }
10	},
11},