Scatter chart plugin for Chart.js chartjs.org
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 }
];
Chart.Scatter.js is available under the MIT license.
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.