<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Soby Polar Area Chart Demo</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<script src="/media/js/jquery-3.1.0.js" type="text/javascript"></script>
<link href="/media/css/soby.ui.components.css" rel="stylesheet" type="text/css" media="all" />
<script src="/media/js/soby.ui.components.min.js"></script>
</head>
<body>
<div id="soby_ChartDiv" ></div>
</body>
</html>
var dataSet1 = new SobyChartDataset();
dataSet1.Title = "Chart1";
dataSet1.Type=SobyChartTypes.PolarAreaChart;
dataSet1.Data = [1, 10, 70, 35, 50, 100];
var polarAreaChart = new SobyChart("#soby_ChartDiv", "Doughnut Chart", [dataSet1], "There is no record found.", ["January", "February", "March", "April", "May", "June"]);
polarAreaChart.Width = 600;
polarAreaChart.Height = 300;
polarAreaChart.Legend.Position = SobyChartElementPosition.Top;
polarAreaChart.Legend.VerticalAligment = SobyChartVerticalAligment.Bottom;
polarAreaChart.Legend.HorizontalAligment = SobyChartHorizontalAligment.Right;
polarAreaChart.Initialize();
This example displays all array values