Skip to content

Commit

Permalink
Merge pull request #1562 from ossreleasefeed/bug923966-ensure-proper-…
Browse files Browse the repository at this point in the history
…color-ratio-between-graph-line-colors

Fix Bug 923966, ensure better contrast between graph line colors and background
  • Loading branch information
adngdb committed Oct 8, 2013
2 parents fddcf14 + 60d8a91 commit d55f845
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
@@ -1,6 +1,6 @@
$(function() {
var aduChartContainer = $("#adu-chart"),
colours = ['#0578a9', '#bc400f', '#3a8324', '#990099'],
colours = ['#6a3d9a', '#e31a1c', '#008800', '#1f78b4'],
chartOpts = {
xaxis: {
mode: 'time',
Expand Down Expand Up @@ -43,7 +43,7 @@ $(function() {
$.plot(aduChartContainer, chartData, chartOpts);
}
}

var windowHash = window.location.hash;
if (windowHash === "#os_search") {
showHideDaily("daily_search_os_form");
Expand Down
Expand Up @@ -13,7 +13,7 @@ $(function() {
dateRangeTypeValPattern = /(?!=)[a-zA-Z]{1,6}(?=:|$)/i,
durationPattern = /\d{1,2}(?=:|$)/,
durationValPattern = /(?!=)\d{1,6}(?=:|$)/,
colours = ['#0578a9', '#bc400f', '#3a8324', '#990099'],
colours = ['#6a3d9a', '#e31a1c', '#008800', '#1f78b4'],
chartOpts = {
xaxis: {
mode: 'time',
Expand Down

0 comments on commit d55f845

Please sign in to comment.