I have tried this but min price is showing as negative number,
protected override void OnRender(ChartControl chartControl, ChartScale chartScale)
{
double maxPrice=ChartPanel.MaxValue;
double minPrice=ChartPanel.MinValue;//chartScale.MinValue;
Draw.TextFixed(this, "Test", minPrice.ToString()+", "+maxPrice.ToString(), TextPosition.TopLeft);
}
this should be quite simple, not sure what is wrong!
ChartPanel.MaxValue shows correct number but ChartPanel.MinValue returns -0.015!

Comment