|
// add your additional code here
public tooltip: Object = {
enable: true,
shared: true,
};
// add your additional code here
|
My graph will look like above, I am showing Low/High Warning/Criticals as plotlines but I want to show the temperature in Yaxis with the respected colors for suppose Low Critical is 5C in blue color I am able to draw that plot line at that position but I need to show that 5 in Y axis ticks with Blue color (5C),like the same way for other 3 values and also I want to show another tick position to show the Highest value, Is it possible?
Its not only about colour I want to show custom tick in between 20-25 like 22. Among with normal ticks I want to show my custom ticks also (like 0,5,10,13,15,20,22,24,25).
I want near by tooltip when ever I mouse over on the graph even there is no point at that position.
|
public annotation: Object[] =[
{
content: '13% <svg height="10" width="10"><line x1="0" y1="5" x2="6" y2="5" style="stroke:#b5b5b5;stroke-width:1" /> </svg>',
x: '9%',
y: '47%',
region: 'Chart',
coordinateUnits: 'Pixel'
}
//…
] |