Search found 10 matches
- Thu Mar 17, 2005 6:38 pm
- Forum: VCL
- Topic: TContourMap series causes TMarkTipsTool failure
- Replies: 5
- Views: 10006
- Tue Mar 15, 2005 6:15 pm
- Forum: VCL
- Topic: TContourMap series causes TMarkTipsTool failure
- Replies: 5
- Views: 10006
- Mon Mar 14, 2005 9:12 pm
- Forum: VCL
- Topic: TContourMap series causes TMarkTipsTool failure
- Replies: 5
- Views: 10006
TContourMap series causes TMarkTipsTool failure
I have a TContourMap series and a TMarkTipsTool (no Series assigned, i.e. works with all series). While the contour map is empty, everything is fine. Next I add data to the contour map. Everything is fine. Now if I clear the contour map (Active := false; Clear;), subsequent mouse moves will attempt ...
- Mon Feb 14, 2005 9:25 pm
- Forum: VCL
- Topic: ChartImageTool problem
- Replies: 1
- Views: 4673
ChartImageTool problem
There is a possible unintended dependency between the chart image's axis orientation and the image's appearance. If the axis is inverted, the image is flipped. If this is a desirable effect, it should be at least made optional, so that if an image is placed on the chart based on axes that are invert...
- Thu Feb 03, 2005 10:16 pm
- Forum: VCL
- Topic: Color table overflow when exporting to GIF
- Replies: 2
- Views: 6341
Solved my own problem :) var tmpBitmap: TBitmap; r: TRect; begin if dlgSaveGIF.Execute then with TGIFExportFormat.Create do try Panel := chBaseMap; //The key is to create TGIFImage and then set ColorReduction with TGIFImage.Create do begin DitherMode := dmNearest; Compression := gcLZW; ColorReductio...
- Thu Feb 03, 2005 10:09 pm
- Forum: VCL
- Topic: Bottom axis label increment issue
- Replies: 2
- Views: 6293
- Tue Feb 01, 2005 8:25 pm
- Forum: VCL
- Topic: Bottom axis label increment issue
- Replies: 2
- Views: 6293
Bottom axis label increment issue
In a chart with two series (one has several points, the other has perhaps two points), the bottom axis behavior is incorrect. This is most noticable when the x values are in the range of 0 to 1. The culprit seems to be the AnySeriesHasLessThan function, which causes CalcLabelsIncrement to return 1, ...
- Tue Feb 01, 2005 5:18 pm
- Forum: VCL
- Topic: Color table overflow when exporting to GIF
- Replies: 2
- Views: 6341
Color table overflow when exporting to GIF
When I attempt to export a chart to GIF, I get "Color table overflow". Here is the code: with TGIFExportFormat.Create do try Panel := SomeChart; SaveToFile('SomeFilename.gif'); finally Free; end; However, the same chart exports just fine when using TeeExport. This happens in 32 and 24 bit screen res...
- Tue Feb 01, 2005 4:44 pm
- Forum: VCL
- Topic: UpLeftZooms property errors
- Replies: 0
- Views: 5670
UpLeftZooms property errors
The UpLeftZooms property of TTeeZoom is described inaccurately in help. In addition, it is impossible to unzoom if the zoom direction is set to tzdVertical. To make unzoom work again, I modified TCustomChart.MouseUp in Chart.pas. IMHO the help topic should be modified to something like this: Gets or...
- Tue Jan 11, 2005 8:05 pm
- Forum: .NET
- Topic: Contour is hogging CPU after form activate
- Replies: 8
- Views: 18734
100% CPU and flicker when contour active
I came here to read about the ill effect of contour series, although my experience is in Delphi 7 with TeeChart 7.02 Pro. First an application written in D7/TeeChartPro601 showed contours perfectly, but the same code fails to show contours after moving to 702. Then I found that a new application wit...