Search found 115 matches

by bdw
Thu May 26, 2005 8:39 pm
Forum: VCL
Topic: TGauge bug
Replies: 5
Views: 8444

Thanks for the reply, I was starting to wonder if anyone read these posts. and that there may be a better way to report bugs ? As a work around I was using the cavas technique to draw my own needle. In doing this I seem to strike a problem when I try and use the AngleToPos() function and the Rotatio...
by bdw
Thu May 26, 2005 8:35 pm
Forum: VCL
Topic: Alternative TGauge labels
Replies: 5
Views: 9516

Thanks Pep for the reply. It took me a while to work out but your suggestion was the work around I was using. I have it working to some extent at the present time, however I seem to strike a probelm when I try and use the AngleToPos() function and the RotationAnlge is not set to 90 or 270, can someo...
by bdw
Mon May 23, 2005 8:37 am
Forum: VCL
Topic: TGauge bug
Replies: 5
Views: 8444

My work around for this has been to draw my own needle. However I seem to strike a probelm when I try and use the AngleToPos() function and the RotationAnlge is not set to 90 or 270, can someone explain this function ? The angle passed to AngleToPos() is a radian value but I need to make it negative...
by bdw
Fri May 20, 2005 5:37 am
Forum: VCL
Topic: TGauge bug
Replies: 5
Views: 8444

I fogot to mention I was setting the ticks minimum to 0 and maximum to 360 as well...........
by bdw
Fri May 20, 2005 5:35 am
Forum: VCL
Topic: TGauge bug
Replies: 5
Views: 8444

TGauge bug

Hello, We have TChart VCL v7.04, the TGauge appears to have a bug where the needle is not drawn correctly at 45 and 225 along with various angles adjacent to these values. This can be demostrated in the TeeChart Pro 7 demo software. Select Chart styles, then Other, then Gauge. Click on edit, set the...
by bdw
Thu May 19, 2005 9:13 am
Forum: VCL
Topic: Alternative TGauge labels
Replies: 5
Views: 9516

Alternative TGauge labels

Hi, We have TChart 7.04 VCL. I was trying to display alternative axis labels on the TGauge graph but have had no luck. With the TLineSeries this could be done with code similar to :- TChartAxis *axis = graph_->Axes->Right; axis->Items->Clear(); // remove all custom labels // add custom labels axis->...
by bdw
Tue May 17, 2005 12:35 am
Forum: VCL
Topic: Changing axis labels
Replies: 6
Views: 12900

Ok, I worked out a way of doing it.....i.e.
TChartAxis *axis = graph_->Axes->Right;
axis->Items->Clear(); // remove all custom labels
// add custom labels
axis->Items->Add(0.0, "N");
...etc...
If there is a better way feel free to comment.
Brett.
by bdw
Mon May 16, 2005 11:34 pm
Forum: VCL
Topic: Changing axis labels
Replies: 6
Views: 12900

Changing axis labels

Hello, We have TeeChart Pro V7.05 VCL, what I was wanting to do is display wind direction on a time series chart. In doing so I was wanting to both display 0-360 degrees and also a N,S,W,E label. Is this possible ? I was looking at the TAxisLabelTool component but couldn't find anything in the help ...
by bdw
Thu Mar 17, 2005 1:09 am
Forum: VCL
Topic: TeeExport
Replies: 3
Views: 7273

Thanks for that information....thats sorted the problem. So is there a BCB help file that covers this sort of thing or is this just an oversight in the documentation ? Regards, Brett Hi. For BCB, adding only the #include won't work. You also have to add the #pragma link statements. In your case: #in...
by bdw
Wed Mar 16, 2005 12:44 am
Forum: VCL
Topic: TeeExport
Replies: 3
Views: 7273

TeeExport

Hi, I call TeeExport(FormMain, graph_); from my code but the only export formats that I can see are asBitmap and asMetafile. How do I get the other formats displayed ? I have included the following hearders :- #include <TeeJPEG.hpp> #include <TeeGIF.hpp> #include <TeePNG.hpp> #include <TeExport.hpp>...