I managed to get the Y axis values with this code:
public override void Plot(Graphics graphics, Rectangle bounds, double min, double max)
{
yaxmax=Math.Round(max,4);
yaxmin=Math.Round(min,4);
}
protected override void OnBarUpdate()
{
....
Plot0.Set(GV2);
}
I obviously have no clue about C++ or C# excuse the question if its a noob question.
Thank you.

Comment