Hello Friends,
Please help me with the next situation:
I have the following structure of the tree:
['Global', null, 0,
0],
['Europe', 'Global', 1, 0],
['UK', 'Europe', 1, 1],
['London', 'UK', 1, 0],
['Edinburg', 'UK', 1, 0],
['Tower', 'London', 1, 1],
['Buckingham', 'London', 1, 0]
and the next config:
var options = {
highlightOnMouseOver: false,
maxDepth: 2,
maxPostDepth: 2,
minColor: 'red',
midColor: 'green',
maxColor: 'green',
headerHeight: 40,
showScale: false,
fontColor: 'black',
fontSize: '24',
useWeightedAverageForAggregation: true,
hintOpacity: 0.5
};
(screenshots attached)
I
have a question: Is the any way to change a color of UK node to red on
the Global level or to change a color of London node on the UK level
without changing a color of its child nodes?
If be simple, I want to know a way to change a colors of parent nodes only on the top-level.