quadratichq / quadratic

Quadratic | Technical Spreadsheet with Python, SQL, and AI
https://QuadraticHQ.com
Other
2.92k stars 148 forks source link

JavaScript chart.js low resolution charts #1539

Open luke-quadratic opened 2 months ago

luke-quadratic commented 2 months ago
AyushAgrawal-A2 commented 2 months ago

@luke-quadratic

axes labels works for the following code snippet, scales property need to be inside options property

// Create scatter plot
new Chart(canvas, {
    type: 'scatter',
    data: data,
    options: {
      scales: {
        x: {
          title: {
            display: true,
            text: "mpg"
          }
        },
        y: {
          title: {
            display: true,
            text: 'horsepower'
          },
          suggestedMin: -10,
          suggestedMax: 200
        }
      }
    }
});