My issue is a bit hard to explain so I'm attaching two images below which should explain the "outer color" I'm looking to change.
My results are currently the standard google charts behavior. When I hover over a slice I get a semi-transparent variant of that color on the outer part of the slice.
Google Chart Hover Color Standard Behavior
I would like to make the transparent grey to be the same color as the slice, just like this:
Desired Google Chart Color Behavior
Does anyone out there know if this is possible? I've looked through the documentation but am either missing the configuration option for this or it just does not exist. Thank you!
Also my current code can be found here:
function drawChart() {
var data = google.visualization.arrayToDataTable([
['Savings Category', 'Savings'],
['Trade Savings', 11],
['Shipping Savings', 20],
['Bulk Savings', 12],
['Promo Savings', 12],
]);
var options = {
pieHole: 0.8,
legend: 'none',
height: '100%',
width: '100%',
pieSliceText: 'none',
backgroundColor: '#f8f5f3',
colors: ['#0066a6', '#54c0e8', '#cccccc', '#818181'],
chartArea: {
height: '90%',
width: '90%',
},
slices: [{offset: 0.05}, {offset: 0.05}, {offset: 0.05}, {offset: 0.05}],
tooltip: {
trigger: 'selection'
},
pieResidueSliceColor: "yellow"
};