Scatter chart with quadrant example

Created using FusionCharts Suite XT - www.fusioncharts.com

by Nabajeet Sonowal

HTML

<script src="http://static.fusioncharts.com/code/latest/fusioncharts.js"></script>
<script src="http://static.fusioncharts.com/code/latest/fusioncharts.charts.js"></script>
<script src="http://static.fusioncharts.com/code/latest/themes/fusioncharts.theme.fint.js"></script>
<!-- Scatter chart example -->
<div id="chart-container">FusionCharts will render here</div>

JavaScript

FusionCharts.ready(function () {
    var tempVsSalesChart = new FusionCharts({
        type: 'scatter',
        renderAt: 'chart-container',
        width: '600',
        height: '350',
        dataFormat: 'json',
        dataSource: {
            "chart": {
                "xaxismaxvalue": "100",
                    "xaxisminvalue": "20",
                    "yaxismaxvalue": "7",
                    "yAxisMinValue": "0",
                    "drawQuadrant": "1",
                    "quadrantXVal": "55",
                    "quadrantYVal": "4",
                    "quadrantLineColor": "#000000",
                    "quadrantLineThickness": "5",
                    "quadrantLineAlpha": "50"
            },
                "categories": [{
                "verticalLineDashed": "1",
                    "verticalLineDashLen": "1",
                    "verticalLineDashGap": "1",
                    "verticalLineThickness": "1",
                    "verticalLineColor": "#000000",
                    "category": [{
                    "x": "23",
                        "label": "23\xB0 F",
                        "showverticalline": "0"
                }, {
                    "x": "32",
                        "label": "32\xB0 F",
                        "showverticalline": "1"
                }, {
                    "x": "50",
                        "label": "50\xB0 F",
                        "showverticalline": "1"
                }, {
                    "x": "68",
                        "label": "68\xB0 F",
                        "showverticalline": "1"
                }, {
                    "x": "80",
                        "label": "80\xB0 F",
                        "showverticalline": "1"
                }, {
                    "x": "95",
                        "label": "95\xB0 F",
                        "showverticalline": "1"
                }]
            }],
                "dataset": [{
                "seriesname": "Ice Cream",
                  ...