Hi,
I've been struggling with the ChartGrid for some time now:
As soon as I have more than one series in a Chart (connected to ChartGrid) everything is fine, but when I have only ONE series in a Chart (that is connected to the chartgrid), I only see one row of values.
I've tried leaving the "Series" property of ChartGrid blank, and filling it in (during runtime) with my series, but precisely the same thing happens. I only see one row. As soon as I add another series, I can now see both series's data, and all (100+) rows of data are displayed.
Is there some property I'm missing?
Thanks,
Christiaan
Delphi 7, TCharts 8.02 and TChartGrid
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Christiaan,
I'm not able to reproduce the issue here. Could you please send us a simple example project we can run "as-is" to reproduce the problem here?
You can either post your files at news://www.steema.net/steema.public.attachments newsgroup or at our upload page.
Thanks in advance.
I'm not able to reproduce the issue here. Could you please send us a simple example project we can run "as-is" to reproduce the problem here?
You can either post your files at news://www.steema.net/steema.public.attachments newsgroup or at our upload page.
Thanks in advance.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Christiaan,
Thanks for the example project. Yes, we could reproduce the issue here, this is a bug (TV52013116) that we have added to the list to be fixed for next releases.
In the meantime, as a workaround, you can add line below after populating your series. This will refresh the grid.
Thanks for the example project. Yes, we could reproduce the issue here, this is a bug (TV52013116) that we have added to the list to be fixed for next releases.
In the meantime, as a workaround, you can add line below after populating your series. This will refresh the grid.
Code: Select all
ChartGrid1.Chart := Chart1;
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |