Search found 4 matches

by MicroSolutions
Wed Sep 30, 2020 7:59 am
Forum: VCL
Topic: BoxPlot Initial Paint seems to be wrong
Replies: 6
Views: 14265

Re: BoxPlot Initial Paint seems to be wrong

Yes, Series1.RecalcStats did the trick!
Thank You!
by MicroSolutions
Fri Sep 18, 2020 9:10 am
Forum: VCL
Topic: BoxPlot Initial Paint seems to be wrong
Replies: 6
Views: 14265

Re: BoxPlot Initial Paint seems to be wrong

Hello,

Sure.
I have attached a simple project.

Best Regards:
MicroSolutions
by MicroSolutions
Thu Sep 17, 2020 11:39 am
Forum: VCL
Topic: BoxPlot Initial Paint seems to be wrong
Replies: 6
Views: 14265

Re: BoxPlot Initial Paint seems to be wrong

Hello, Thx for the answer, but unfortunately it does not seems to work. What is very interesting, if I call Chart.Draw in a separate function, it works. If I call Chart.Draw directly after adding the values, it does not work. Any Idea? Can You reproduce the issue on Your side? Regards: MicroSolutions
by MicroSolutions
Fri Sep 11, 2020 2:56 pm
Forum: VCL
Topic: BoxPlot Initial Paint seems to be wrong
Replies: 6
Views: 14265

BoxPlot Initial Paint seems to be wrong

Hello, If I add some values for a BoxPlot series , where the minimum is grater than 0, the BoxPlot is not painted correctly for the first time. If I move around with the mouse, the scale and painting is fixed. (then the Chart repaints itself) e.g: for I:=0 to 30 do begin self.Series1.Add(I+100); end...