I build graphics and display in one place using Combo Chart google in the object vAxis I set the color and name for each chart:
vAxes: {
0: {
title:'График 1',
textStyle: {color: '#21C40A'},
minorGridlines: {count: 2, color: '#ccc'},
titleTextStyle: {color: '#21C40A'},
},
1: {
title:'График 2',
textStyle: {color: '#E89712'},
minorGridlines: {count: 2, color: '#ccc'},
titleTextStyle: {color: '#E89712'}
},
2: {
title:'График 3',
textStyle: {color: '#390983'},
minorGridlines: {count: 2, color: '#ccc'},
titleTextStyle: {color: '#390983'}
}
}
The question is how you can specify the position of the y coordinate or take the distance from each other so that the data does not stack on each other? Can I get it this way?
on one of the right side axis,
set -->
textPosition: 'in'
this will move one inside the chart, otherwise,
they will always stack on top of each other...
see following working snippet,
also use
chartArea.right
to allow enough room for the labels and titles...