chartjs / Chart.js

Simple HTML5 Charts using the <canvas> tag
https://www.chartjs.org/
MIT License
64.61k stars 11.9k forks source link

Scatterplot not rendering correctly on demo site #4372

Closed brylie closed 7 years ago

brylie commented 7 years ago

Expected Behavior

Scatter plot should look like a grid of circles, or symbols.

Current Behavior

Scatter plot example appears to be trying to connect the dots: screenshot_20170614_102055

Steps to Reproduce (for bugs)

  1. go to http://www.chartjs.org/samples/latest/
  2. Click 'Scatter' or 'Scatter multi-axis'

Context

We are comparing Chart.js with a couple of other charting libraries right now, so are relying on examples to make an informed decision.

Environment

etimberg commented 7 years ago

Should be as simple as adding showLine: false to those datasets. The scatter chart is built on top of the line chart hence why the line is there

kumarharsh commented 7 years ago

+1. Encountering this type of rendering was very unexpected, and I feared that 2.6.0 had more rendering bugs than I had thought...