Skip to content

Commit

Permalink
Changed font color
Browse files Browse the repository at this point in the history
  • Loading branch information
Doug Youch committed Sep 9, 2010
1 parent 6ac3072 commit bef7a2b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions public/javascripts/emarketing.js
Expand Up @@ -157,12 +157,15 @@ RealTimeStatsViewer = {
data.setValue(i, 2, RealTimeStatsViewer.chart.hits[i]);
}
var chart = new google.visualization.ColumnChart(document.getElementById('real_time_charts'));
var color = '#603813';
chart.draw(data, {width: width,
height: height,
title: RealTimeStatsViewer.chart.from + ' - ' + RealTimeStatsViewer.chart.to,
legend: 'right',
vAxis: {title: 'Visitors / Hits', minValue: 0, maxValue: maxValue},
hAxis: {title: 'Every ' + RealTimeStatsViewer.chart.range + ' minutes'}
legendTextStyle: {color: color},
titleTextStyle: {color: color},
vAxis: {title: 'Visitors / Hits', minValue: 0, maxValue: maxValue, textStyle: {color: color}, titleTextStyle: {color: color}},
hAxis: {title: 'Every ' + RealTimeStatsViewer.chart.range + ' minutes', textStyle: {color: color}, titleTextStyle: {color: color}}
});
},

Expand Down

0 comments on commit bef7a2b

Please sign in to comment.