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




dvxCharts for JavaScript comes with a large number of predefined language packs and settings for almost all popular languages. They are located in the installation package, in the /js/i18n folder. Language packs are in the form of javascript files, containing definitions for all strings in the chart that can be localized.

In order to use a particular language pack, you need to include the javascript language pack to the head of your page after referencing the dvxCharts javascript file.

<script src="../js/dvxCharts.min.js" type="text/javascript"></script>
<script src="../js/i18n/chart.locale-xx.js" type="text/javascript"></script>

For detailed implementation, please take a look at the HTML code tab.
 
<!DOCTYPE html>
<html>
<head>
    <title>Localization 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 src="../../js/i18n/chart.locale-de.js" type="text/javascript"></script>

    <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: 'Localization',
            legend: { visible: false },
            border: {
                padding: 16
            },
            animation: { duration: 2 },
            crosshairs: {
                enabled: true,
                hLine: false,
                vLine: { strokeStyle: '#cc0a0c' }
            },
            axes: [
                {
                    location: 'bottom',
                    zoomEnabled: true,
                    labels: {
                        stringFormat: 'd. mmmm yyyy'
                    }
                }
            ],
            series: [
                {
                    type: 'line',
                    data: data1,
                    markers: null
                },
                {
                    type: 'line',
                    data: data2,
                    markers: null
                }
            ]
        });

        chart.addEventListener('tooltipFormat', function (e, data) {

            if (data instanceof Array === false) {

                var date = data.chart.stringFormat(data.x, "dddd, d. mmmm yyyy");

                var tooltip = '<b>' + date + '<br />' +
                    '<span style="color:' + data.series.fillStyle + '">' + data.y + '</span><br /></b>';

                e.result = tooltip;
                return;
            }

            var date = data[0].chart.stringFormat(data[0].x, "dddd, d. mmmm yyyy");

            var tooltip = '<b>' + date + '<br />' +
                '<span style="color:' + data[0].series.fillStyle + '">' + data[0].y + '</span><br />' +
                '<span style="color:' + data[1].series.fillStyle + '">' + data[1].y + '</span><br /></b>';

            e.result = tooltip;
        });

        chart.write('container');
    </script>

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