Skip to content

jannhama/Chart.Scatter

 
 

Repository files navigation

Chart.Scatter

Scatter chart plugin for Chart.js chartjs.org

Documentation & live demo

Changes in this fork

This fork has option to set line (stroke) width as zero to disable them per dataset. E.g.

var datasets = [
	{
		label: "dataset 1",
		strokeWidth: 5,
		data: data
	},
	{
		label: "dataset 2",
		strokeWidth: 0, // here we have zero width and only points are drawn
		data: data2 }
];

License

Chart.Scatter.js is available under the MIT license.

Bugs & issues

When reporting bugs or issues, if you could include a link to a simple jsbin or similar demonstrating the issue, that'd be really helpful.

About

Scatter chart plugin for Chart.js

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 83.4%
  • HTML 16.6%