Search found 6 matches
- Fri Aug 14, 2009 2:28 pm
- Forum: VCL
- Topic: Export data in test or xls format
- Replies: 1
- Views: 2531
Export data in test or xls format
Hi, When I try to save data (a lot of series with addXY method), with this code: with TSeriesDataXLS.Create(PhysicalChart,nil) do try includeindex:=false; IncludeHeader := True; IncludeLabels := false; SaveToFile('bidon.xls'); finally Free; end; with TSeriesDataText.Create(PhysicalChart,nil) do try ...
- Wed Sep 21, 2005 8:43 am
- Forum: VCL
- Topic: LoadChartFromStream failed in binary mode
- Replies: 8
- Views: 7909
- Sat Sep 17, 2005 5:38 pm
- Forum: VCL
- Topic: LoadChartFromStream failed in binary mode
- Replies: 8
- Views: 7909
- Wed Sep 14, 2005 9:21 am
- Forum: VCL
- Topic: LoadChartFromStream failed in binary mode
- Replies: 8
- Views: 7909
- Wed Sep 14, 2005 9:11 am
- Forum: VCL
- Topic: LoadChartFromStream failed in binary mode
- Replies: 8
- Views: 7909
Hi Narcis, When I save ONE chart in ONE file there is no problem. If I try to save TWO charts in ONE file with streaming process in binary mode, the file is "invalid" but in text mode it is right. It seems that the separation between series data in the first chart and the start of the second chart i...
- Fri Sep 09, 2005 10:19 am
- Forum: VCL
- Topic: LoadChartFromStream failed in binary mode
- Replies: 8
- Views: 7909
LoadChartFromStream failed in binary mode
Hi, I try to save two differents charts in a FileStream and Load these two charts with the same FileStream. Savin g process: procedure TForm1.SaveStreamBitBtnClick(Sender: TObject); var theStream:TFileStream; begin OpenDialog1.DefaultExt:='Tee'; OpenDialog1.FilterIndex:=1; OpenDialog1.Filter:='Files...