Hi
I am creating a combined graphic, in which I am modifying the axes, minimum and maximum. But for some reason, in certain cases, the first left axis label, is not drawed. How I can fix it?
In the example, only the graph for the stock RELAPAC1, has that problem
Best Regards
Problem with axes label
Problem with axes label
- Attachments
-
- Graph.jpg (264.21 KiB) Viewed 8316 times
Re: Problem with axes label
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Problem with axes label
Hi Yeray
Thanks for your support, but the problem continues, even with including your suggestion.
This is part of my code, the values for wMinY1,wMaxY1 and w_Step, are calculated, depending the values for each stock
...
Grafico.TChart1.Axis.Left.SetMinMax wMinY1, wMaxY1
Grafico.TChart1.Axis.Left.Increment = w_Step
Grafico.TChart1.Axis.Left.MaximumOffset = 1
w_EjeY = wMinY1
With Grafico.TChart1.Axis.Left.Labels
.Clear
For i = 1 To 5
.Add w_EjeY, Format$(w_EjeY, "##,##0.00")
w_EjeY = w_EjeY + w_Step
Next i
End With
...
Regards
Thanks for your support, but the problem continues, even with including your suggestion.
This is part of my code, the values for wMinY1,wMaxY1 and w_Step, are calculated, depending the values for each stock
...
Grafico.TChart1.Axis.Left.SetMinMax wMinY1, wMaxY1
Grafico.TChart1.Axis.Left.Increment = w_Step
Grafico.TChart1.Axis.Left.MaximumOffset = 1
w_EjeY = wMinY1
With Grafico.TChart1.Axis.Left.Labels
.Clear
For i = 1 To 5
.Add w_EjeY, Format$(w_EjeY, "##,##0.00")
w_EjeY = w_EjeY + w_Step
Next i
End With
...
Regards
- Attachments
-
- Graph.jpg (317.81 KiB) Viewed 8268 times
Re: Problem with axes label
Hola Daniel,
There are some variables in that code we don't know the value they have.
Please, try to set a bigger MaximumOffset and, if you still can't see a better result, please try to arrange a simple example project we can run as-is to reproduce the problem here.
Thanks in advance.
There are some variables in that code we don't know the value they have.
Please, try to set a bigger MaximumOffset and, if you still can't see a better result, please try to arrange a simple example project we can run as-is to reproduce the problem here.
Thanks in advance.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |