Tagged Questions
TeeChart is a commercial set of powerful charting components originally written for Delphi. A basic compoment called TChart is included in every Delphi. TeeChart is also available for major languages: .NET Framework, Java, PHP, Android, etc.
3
votes
1answer
94 views
Delphi 7: How to print a TChart?
How do I print a TChart?
I displayed a TChart, and there is a TButton in the screen.
When the TButton clicked, Windows Printer Dialog will be shown and the TChart will be printed to the selected ...
3
votes
1answer
246 views
Synchronized zooming of two TChart components
I'm using two TChart components and would like to do synchronized zooming for them. I found that TChart has ZoomRect procedure for zooming into a desired rectangle on the chart but I haven't found any ...
2
votes
3answers
91 views
Delphi Tchart x and y values in zoomed rectangle
I have a tchart series that contains 5000 points from a data base.
I can zoom in on a particular section of the data with the mouse.
I wish to copy only the x and y values that are visible in the ...
2
votes
1answer
179 views
Copy XValues from one TChartSeries to another
Does anyone know how to copy the XValues from one TChartSeries to another in Delphi7 (and TeeChart 4.04)? TChartSeries.ReplaceList(CopySeries.XValues, OriginalSeries.XValues) does not work, since it ...
2
votes
3answers
636 views
Large TChart takes a long time to draw
Top post: I have accepted an answer,but it doesn't work for me. I will post a new question, stressing Delphi 7. Thanks to all who gave some good input
I have measurements taken at one second ...
2
votes
3answers
2k views
Prevent series from using clWhite with Delphi TChart
I have a report that uses a TChart that I am maintaining. One of the TLineSeries that gets added automatically gets assigned the color clWhite, which is too close to the background (clBtnFace).
If ...
1
vote
2answers
123 views
How do I export the TChart to the bitmap?
I'm using TeeChart Pro v7.06 of Steema Software and Delphi 6. In my project there are TChart (whose BottomAxis.Automatic = False) and TChartScrollBar (to scroll). In TChart there are several series ...
1
vote
1answer
132 views
Delphi: Show the same Graph on 2 different forms
I would like to show the same graph (TChart) on 2 different forms. on the first there is a small version, but i would like the user to be able to click a button to show a bigger version of the graph.
1
vote
2answers
979 views
Plotting a TChart with time as the X-axis
I have a series of 3,600 values, one every second for an hour. I want to chart them as a single series, using TChart in Delphi 7.
The values should be plotted on the Y-axis. What should I pass to ...
1
vote
3answers
717 views
Optimizing TCHart drawing in Delphi 7
My previous question had some great input, but it didn't work for me because my problem seems to be Delphi 7 related.
I have a chart with a single series (TFastLineSeries) and 3,600 datapoints which ...
1
vote
1answer
722 views
Setting Line Colour In TChart
How can I change the colour of a line in a TChart in Delphi at run time? For example, how would I change the colour of:
Chart1.Series[a].
1
vote
3answers
1k views
Delphi TeeChart only showing one record from dataset
Using Delphi Steema TeeChart component, if I link a BarSeries to a dataset using the user interface, it shows up fine, but if I do it using code (which I need to), it's only showing one bar, even when ...
1
vote
2answers
2k views
Get TChartSeries at XY Point in TChart
I'm using the TChart control that comes with Delphi 7 and wish to get the Series and Value # of the line/bar under the mouse pointer.
I'm aware of the OnClickSeries event which provides great info ...
0
votes
2answers
88 views
How to display Unicode in TChart labels
I have a TChart object where I want to be able to display Unicode characters for the axis labels.
Any help would be appreciated.
Addendum : Delphi 5.0
0
votes
3answers
2k views
Mouseover hint for TChart series value
I am using a TChart in Delphi 7, and I want to display some bar charts. I am using the following code to set up the series values from a database query:
chart1.FreeAllSeries;
...
-1
votes
1answer
51 views
Garbage values on TChart Axis
I've been working with TChart version 4.11 for .net 4.0
Everything is fine with charts rendered using this new version in C#, except some garbage at the begining of left and bottom axis?
I am not ...