Posted in charts
1711
11:58 pm, April 3, 2023
 

Simple Line chart with Chart.js

a nice simple line chart example with fill using chart.js

HTML

<canvas id="myChart" style="width:100%;max-width:700px"></canvas>

Scripts

<script  
src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.4/Chart.js">  
</script>

Javascript

const xValues = [50,60,70,80,90,100,110,120,130,140,150];  
const yValues = [7,8,8,9,9,9,10,11,14,14,15];  
  
new Chart("myChart", {  
  type: "line",  
  data: {  
    labels: xValues,  
    datasets: [{  
      backgroundColor:"rgba(0,0,255,1.0)",  
      borderColor: "rgba(0,0,255,0.1)",  
      data: yValues  
    }]  
  },  
  options:{}  
});

View Statistics
This Week
20
This Month
177
This Year
457

No Items Found.

Add Comment
Type in a Nick Name here
 
Search Code
Search Code by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

Subscribe to weekly updates about things i have added to the site or thought interesting during the last week.

You could also follow me on twitter or not... does anyone even use twitter anymore?

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote


Not Sure
Random CSS Property

::marker

The ::marker CSS pseudo-element selects the marker box of a list item, which typically contains a bullet or number. It works on any element or pseudo-element set to display: list-item, such as the <li> and <summary> elements.
::marker css reference