[Test] Chart Types - Pie/Doughnut

For Pie/Doughnut charts. Legend on, switch Show Labels, with Show Inside/Outside and as Values/Percentage.Check Interactive Legend.

by cristiscu

HTML

<link href="https://cdn.anychart.com/css/latest/anychart-ui.min.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js" type="text/javascript"></script>
<script src="https://cdn.anychart.com/js/latest/anychart-bundle.min.js" type="text/javascript"></script>
<div class="chart_cont">
    <div id="chart_div"></div>
</div>

JavaScript

anychart.onDocumentReady(function () {
    anychart.fromJson({
        chart: {
        		type: "pie3d",
            container: "chart_div",
            animation: { enabled: true },
            legend: { enabled: false },
            data: [
            	{ x: "Jan", value: 51 },
              { x: "Feb", value: 62 },
              { x: "Mar", value: 123 }
            ]
        }
    }).draw();
});