Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- var chart1; // globally available
- $(document).ready(function() {
- chart1 = new Highcharts.Chart({
- chart: {
- renderTo: 'chart-container-1',
- defaultSeriesType: 'bar'
- },
- title: {
- text: 'Art by Media'
- },
- xAxis: {
- categories: <cfoutput>#serializejson(cats)#</cfoutput>
- },
- yAxis: {
- title: {
- text: 'Total'
- }
- },
- series: [{name:"Totals",data:<cfoutput>#replace(serializejson(data),"""","","all")#</cfoutput>}]
- });
- });
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement