Transparent Chart

by cristiscu

HTML

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js" type="text/javascript"></script>
<script src="https://code.highcharts.com/highcharts.js" type="text/javascript"></script>
<div id="chart_div"></div>

JavaScript

$(function () {
   new Highcharts.Chart({
      chart: {
         renderTo: "chart_div",
         type: 'pie',
         backgroundColor: "transparent",
      },
      plotOptions: { series: {dataLabels: { enabled: false, } } },
      series: [{ data: [{ y: 1 }, { y: 1 }, { y: 1 }, { y: 1 }, { y: 1 }] }]
   });
});