Chart Polar Line I
Chart Polar Line I

Insert it in <head>

<!-- Choose one for Light Mode -->
<link id="themecss" rel="stylesheet" type="text/css" href="https://i-as.dev/devui/css/light/all.min.css" />
<!-- Choose one for Dark Mode -->
<link id="themecss" rel="stylesheet" type="text/css" href="https://i-as.dev/devui/css/dark/all.min.css" />

<script type="text/javascript" src="https://i-as.dev/devui/js/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="https://i-as.dev/devui/js/devui-all.min.js"></script>

Use Components

<body class="theme-light">

    <div id="chart"></div>
    <script type="text/javascript">
        $(function () {
            $("#chart").devuiChart({
                theme: "light",
                exportOptions: {
                    image: false,
                    print: false
                },
                axisX: {
                    categoricalValues: ['LAC', 'XDD', 'LCY', 'LSS', 'LGW', 'DLH', 'CLH', 'LUV', 'LUZ', 'LCH', 'LYX', 'LPR']
                },
                axisY: {
                    min:0
                },
                chartLegend: {
                    align: "center",
                    verticalAlign: "top"
                },
                seriesSettings: {
                    polarline: {
                        dataPointText: {
                            enabled: true                            
                        }
                    }
                },
                primaryHeader: {
                    text: "Aircraft Current Altitudes"
                },
                dataSeries: [{
                    seriesType: 'polarline',
                    collectionAlias: 'Aircraft Altitude',
                    data: [31000, 34555, 22000, 7000, 27000, 37000, 9000, 22000, 35000, 40000, 35000, 37000]
                }]
            });
        });
    </script>

</body>