Skip to content

NewChart JSZero-dependency charting for business apps

SVG & Canvas rendering, ERP-grade components, config-driven API

Quick Example

html
<div id="chart" style="width: 600px; height: 400px;"></div>
<script src="dist/newchart.min.js"></script>
<script>
  const chart = NewChart.create('#chart', {
    type: 'bar',
    data: {
      labels: ['Jan', 'Feb', 'Mar', 'Apr'],
      datasets: [{
        label: 'Revenue',
        values: [12000, 19000, 15000, 22000]
      }]
    }
  });
</script>

Released under the MIT License.