cannot plot vertical aligned column range in chart.net
Hi
I need to plot 10 column range vertical aligned.
With this code I have compensate disalignment BUT after 4 plot it become again disaligned:
Me.Invoke(Sub()
Chart.Series(“FOOT”).Points.AddXY(Indice_Corrente, Dato_Base_FOOT, Dato_Plot_FOOT)
Chart.Series(“SX_UP”).Points.AddXY(Indice_Corrente – 0.65, Dato_Base_SX_UP, Dato_Plot_SX_UP)
Chart.Series(“SX_DOWN”).Points.AddXY(Indice_Corrente – 1.3, Dato_Base_SX_DOWN, Dato_Plot_SX_DOWN)
End Sub)
Why????????
HiI need to plot 10 column range vertical aligned.With this code I have compensate disalignment BUT after 4 plot it become again disaligned:Me.Invoke(Sub()Chart.Series(“FOOT”).Points.AddXY(Indice_Corrente, Dato_Base_FOOT, Dato_Plot_FOOT)Chart.Series(“SX_UP”).Points.AddXY(Indice_Corrente – 0.65, Dato_Base_SX_UP, Dato_Plot_SX_UP)Chart.Series(“SX_DOWN”).Points.AddXY(Indice_Corrente – 1.3, Dato_Base_SX_DOWN, Dato_Plot_SX_DOWN)End Sub) Why???????? Read More