Skip to content

Commit

Permalink
Merge pull request #658 from getredash/fixes_151118
Browse files Browse the repository at this point in the history
Charts: remove "Show Total %" menu option and the yellow color
  • Loading branch information
arikfr committed Nov 18, 2015
2 parents fc93de7 + d823506 commit f92aa7b
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions rd_ui/app/scripts/ng_highchart.js
Expand Up @@ -12,7 +12,6 @@
'Lilac': '#A47D7C',
'Light Green': '#B5CA92',
'Brown':'#A52A2A',
'Yellow':'#ffff00',
'Black':'#000000',
'Gray':'#808080',
'Pink':'#FFC0CB',
Expand Down Expand Up @@ -98,19 +97,6 @@
buttons: {
contextButton: {
menuItems: [
{
text: 'Toggle % Stacking',
onclick: function () {
var newStacking = "normal";
if (this.series[0].options.stacking == "normal") {
newStacking = "percent";
}

_.each(this.series, function (series) {
series.update({stacking: newStacking}, true);
});
}
},
{
text: 'Select All',
onclick: function () {
Expand Down

0 comments on commit f92aa7b

Please sign in to comment.