dvxCharts Examples

Chart Data

Performance !!!

Bar and Column Charts

Line and Area Charts

Pie and Funnel Charts

Scatter and Bubble Charts

Radar and Polar Charts

Financial Charts

Gantt Charts

Combinational Charts

Dynamic Charts

Working with Chart Axes

Chart Features




You can enable the axis zooming with 'zoomEnabled' axis option. When the zooming is enabled a range selector is displayed along the axis.

With visibleMinimum and visibleMaximum options you can specify the beginning and the end of the visible range.

For detailed implementation, please take a look at the HTML code tab.
 
<!DOCTYPE html>
<html>
<head>
    <title>Axis Zooming Example - JavaScript Chart by dvxCharts</title>
    <link rel="stylesheet" type="text/css" href="../../css/dvxCharts.chart.min.css" />
    <link rel="stylesheet" type="text/css" href="../../themes/base/styles.css" />
    <script src="../../js/dvxCharts.chart.min.js" type="text/javascript"></script>
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
    <style>
        .example-container {
            width: 100%;
            max-width: 500px;
            height: 300px;
        }
    </style>
    
    <script lang="javascript" type="text/javascript">
        function addDays(date, value) {
            var newDate = new Date(date.getTime());
            newDate.setDate(date.getDate() + value);
            return newDate;
        }

        function round(d) {
            return Math.round(100 * d) / 100;
        }

        var data1 = [];
        var data2 = [];

        var yValue1 = 50;
        var yValue2 = 200;

        var date = new Date(2010, 0, 1);

        for (var i = 0; i < 200; i++) {

            yValue1 += Math.random() * 10 - 5;
            data1.push([date, round(yValue1)]);

            yValue2 += Math.random() * 10 - 5;
            data2.push([date, round(yValue2)]);

            date = addDays(date, 1);
        }

        var chart = new dvxCharts.Chart({
            title: 'Axis Zooming',
            animation: { duration: 1 },
            axes: [
                {
                    location: 'bottom',
                    zoomEnabled: true,
                    visibleMinimum: new Date(2010, 1, 1),
                    visibleMaximum: new Date(2010, 4, 1)
                },
                {
                    location: 'left',
                    zoomEnabled: true
                }
            ],
            series: [
                {
                    type: 'line',
                    data: data1,
                    markers: null
                },
                {
                    type: 'line',
                    data: data2,
                    markers: null
                }
            ]
        });
        chart.write('container');
    </script>

</head>
<body>
    <div>
        <div id="container" class="example-container">
        </div>
    </div>
</body>
</html>