Tagged Questions

TeeChart is a commercial set of powerfull charting-compoments written for Delphi. A basic compoment called TChart is included in every Delphi.

learn more… | top users | synonyms

2
votes
1answer
317 views

Delphi TeeChart - print preview and save dialog

I'm using the built in TeeChart in Delphi XE for graphs. When I just put a graph on a form, I have all these options to export/save or print preview, but those aren't there at runtime. I want to add ...
2
votes
2answers
589 views

How to Install a COM using ClickOnce

I have installed my windows application that uses TeeChart ActiveX (a COM Component for charting) using ClickOnce. If I register manually TeeChart using regsvr32 teechart8.ocx, my application works ...
1
vote
1answer
16 views

TeeChart does not accept UnNamed or Unknown colors

When I apply color on TeeChart other than a named or known color it is shown as transparent. This applies to axis, series, labels, and gridlines. CyChartControl.Header.Font.Color = ...
1
vote
0answers
84 views

how to set my own values on Y axis of teechart in borland c++ [closed]

Possible Duplicate: How to set my custom values on Y-axis of my chart I am having great trouble to set labels of Y axis with my own values. like 1= Jan ,2= Feb ,3 = Mar ..... I show same ...
1
vote
1answer
148 views

TeeChart VCL vs .NET

Is TeeChart .NET built from the same source as TeeChart VCL? I'm just wandering as we have a VCL application heavily dependent on TeeChart and I would like to redevelop the GUI component in .NET so I ...
0
votes
1answer
83 views

TeeChart TLineSeries - Is it possible to draw multiple lines per series?

Is it possible to draw multiple lines with a single TLineSeries using TeeChart? I would like to specify a field in the dataset that the series should group by, drawing one line per group. Or is this ...
0
votes
1answer
90 views

(TeeChart - Java) Evaluation Version Performance Issues

We have evaluated TeeChart for Java, and decided to use it. However, one issue concerns us and we need your help to clarify it. The issue is about performance of TeeChart Evaluation version. We have ...
0
votes
1answer
122 views

teechart problem for series label

series[0]->AddXY(30,10,'label1',clRed); series[0]->parent = chart; This is my code to print 1 series on chart. Now I am getting label1 printed on X axis. Is there any way to print this label ...
0
votes
1answer
89 views

How to set my custom values on Y-axis of my chart [closed]

Possible Duplicate: teechart problem for series label Is There any way to print labels ex. Jan , Feb , Mar.... On Y-axis of tchart In Borland c++
0
votes
2answers
199 views

Cannot extrapolate TeeChart Trend Function

I'm using teechart with delphi to plot a series and the trend line for that series using the following code: TF:= TTrendFunction.Create(self); TrendSeries.SetFunction(TF); TrendSeries.DataSource := ...
0
votes
1answer
236 views

How to create Teechart in VB6?

How to create Teechart in VB6?
0
votes
1answer
456 views

Multithreading TeeChart & Media Element

I am working in WPF, using a Media Element and a WPF TeeChart (by Steema). Both of these are visible and updating at the same time - whilst the video is playing, the graph will update at regular ...
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; ...
0
votes
1answer
830 views

Why I get an “Canvas does not allow drawing” while drawing in TeeChart ActiveX 5 component?

I'm using Steema's TeeChart ActiveX 5 component for an application in .NET C#. I do some drawings using the methods Line(), Rectangle() and Circle() through the "Canvas" property of the component. ...
-1
votes
2answers
39 views

Teechart .net Color conversion

I need to apply color to teechart axis using System.drawing.Color Object Code is //chartData.ChartAxesArray[iAxis].AxisTitleColor is System.drawing.Color Object //objAxis.Title.Brush.Color is ...