Getting StartedPerformance !!!Chart DataBar and Column ChartsLine and Area ChartsPie and Funnel ChartsScatter and Bubble ChartsRadar and Polar ChartsFinancial ChartsGantt ChartsCombinational ChartsDynamic ChartsWorking with Chart AxesChart FeaturesCustomizing ChartClient-Side Events |
This sample demonstrates how to set the reversed axis scale.
For detailed implementation, please take a look at the HTML code tab. <!DOCTYPE html> <html> <head> <title> Reversed Axis Scale Example - JavaScript Chart by DataViz Charts </title> <link rel="stylesheet" type="text/css" href="../../css/dataviz.chart.css" /> <link rel="stylesheet" type="text/css" href="../../themes/le-frog/styles.css" /> <script src="../../js/dataviz.chart.min.js" type="text/javascript"></script> <script lang="javascript" type="text/javascript"> var chart = new DataViz.Chart({ title: { text: 'Reversed Axis Scale' }, animation: { duration: 1 }, axes: [ { type: 'linear', location: 'left', reversed: true } ], series: [ { type: 'line', data: [['A', 70], ['B', 40], ['C', 85], ['D', 34], ['E', 25], ['F', 40]] } ] }); chart.write('container'); </script> </head> <body> <div> <div id="container" style="width: 500px; height: 300px;"></div> </div> </body> </html> |