Search found 13 matches
- Thu Nov 15, 2012 2:48 pm
- Forum: VCL
- Topic: Unresolved external with Teetools::TTextShape::DrawTextW
- Replies: 14
- Views: 23752
Re: Unresolved external with Teetools::TTextShape::DrawTextW
This issue still not resolved in the latest version: TeeChart Pro v2012.07.121105 32 bit VCL !
- Thu Aug 30, 2012 2:46 pm
- Forum: VCL
- Topic: Unresolved external with Teetools::TTextShape::DrawTextW
- Replies: 14
- Views: 23752
Re: Unresolved external with Teetools::TTextShape::DrawTextW
I've just installed the latest version of TeeChart and I still get the same link error. Would you please send me your project that compiles and links again?
Thanks
Thanks
- Thu Aug 30, 2012 12:31 pm
- Forum: VCL
- Topic: Unresolved external with Teetools::TTextShape::DrawTextW
- Replies: 14
- Views: 23752
Re: Unresolved external with Teetools::TTextShape::DrawTextW
Hi, For some reason make it virtual did not solve the link issue over here. I tried the file you sent over. // .h file class TMyRectangleTool : public TRectangleTool { protected: public: __fastcall virtual TMyRectangleTool(TComponent * Owner); }; // .cpp file //--------------------------------------...
- Wed Aug 29, 2012 3:03 pm
- Forum: VCL
- Topic: Unresolved external with Teetools::TTextShape::DrawTextW
- Replies: 14
- Views: 23752
Re: Unresolved external with Teetools::TTextShape::DrawTextW
Yes, it will link with no issues if it is not called. Add the line as shown below and the link error will show up.
Code: Select all
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)
{
new TMyRectangleTool(this);
}
- Tue Aug 28, 2012 3:21 pm
- Forum: VCL
- Topic: Unresolved external with Teetools::TTextShape::DrawTextW
- Replies: 14
- Views: 23752
Unresolved external with Teetools::TTextShape::DrawTextW
Hi, I have TeeChart Pro v2012.05.120327 32bit VCL and BCB XE 2 running on Windows 7. I created the following class: // .h file class TMyRectangleTool : public TRectangleTool { protected: public: __fastcall TMyRectangleTool(TComponent * Owner); }; // .cpp file //--------------------------------------...
- Thu Aug 09, 2012 1:08 pm
- Forum: VCL
- Topic: Unable to open include file VCLTee.Chart.hpp with Windows 7
- Replies: 3
- Views: 8681
Re: Unable to open include file VCLTee.Chart.hpp with Windows 7
Apparently the include and lib file references where not added to the C++ options. The issue is resolved after the references are added. TeeChart installation should have added these PATH references? The PATH references are there with Windows XP.
Thanks
Thanks
- Wed Aug 08, 2012 7:46 pm
- Forum: VCL
- Topic: Unable to open include file VCLTee.Chart.hpp with Windows 7
- Replies: 3
- Views: 8681
Unable to open include file VCLTee.Chart.hpp with Windows 7
Hi, I have just installed Windows 7 on my machine. Installed BCB XE 2 Pro. Installed TeeChart Pro v2012.05.120327. When I start BCB XE 2, I can see that TeeChart Std is not removed from the Tool Palette as it did in Windows XP. So I have TeeChart Std and TeeChart Pro both listed on the Tool Palette....
- Tue Apr 24, 2012 1:26 pm
- Forum: VCL
- Topic: Polar Series
- Replies: 8
- Views: 11691
Re: Polar Series
Not knowing Delphi, I assume Chart1.AddSeries(TPolarSeries).DataSource:=Chart1[0] is equivalent Chart1->AddSeries(New TPolarSeries(Chart1))->DataSource = Chart1->Series[0]; This gives the same 1% offset in my test case. I assume with Chart1.Chart3DPercent:=1; All series will show an 1% offset from e...
- Thu Apr 19, 2012 2:24 pm
- Forum: VCL
- Topic: Polar Series
- Replies: 8
- Views: 11691
Re: Polar Series
I guess my confusion comes from the fact that when you set/get AngleIncrement, GetHorizAxis is used. I'd assume that GetHorizAxis is associated with Angle Axis. And Yet, to set Radius scale, both Series1->GetHorizAxis->SetMinMax(min, Max); Series1->GetVertAxis->SetMinMax(min, Max); have to be used (...
- Thu Apr 19, 2012 1:41 pm
- Forum: VCL
- Topic: Polar Series
- Replies: 8
- Views: 11691
Re: Polar Series
Where did you read "GetHorizAxis returns Angle axis"?
TeePolar.pas Line 1110.
{ The BottomAxis is used in Angle axis }
Function TCustomPolarSeries.GetAngleIncrement:Double;
.
.
.
result:=GetHorizAxis.Increment;
TeePolar.pas Line 1110.
{ The BottomAxis is used in Angle axis }
Function TCustomPolarSeries.GetAngleIncrement:Double;
.
.
.
result:=GetHorizAxis.Increment;
- Tue Apr 17, 2012 1:32 pm
- Forum: VCL
- Topic: Polar Series
- Replies: 8
- Views: 11691
Re: Polar Series
Series1->GetHorizAxis->SetMinMax(0,20); GetHorizAxis returns Angle axis. This means sets the Angle axis to display 0 to 20 degree? Shouldn't the action of panning be moving the whole chart along with mouse? What I see is that the circle is being re-scaled. The same goes with zooming. When I zoom in ...
- Thu Apr 12, 2012 3:11 pm
- Forum: VCL
- Topic: Polar Series
- Replies: 8
- Views: 11691
Polar Series
Hi, I have to admit that I'm totally confused as to how this PolarSeries works now. I drop a TPolarSeries in to a Chart. and add the following code. __fastcall TForm1::TForm1(TComponent* Owner) : TForm(Owner) { Series1->GetVertAxis->Automatic = 1; Series1->GetHorizAxis->Automatic = 1; Series1->Circl...
- Thu Apr 12, 2012 12:44 pm
- Forum: VCL
- Topic: Smith Chart XCircle will not zoom
- Replies: 1
- Views: 3724
Smith Chart XCircle will not zoom
Hi,
When Chart->View3D is set to true and Chart->View3DOptions->Zoom is not 100, XCircles will not zoom accordingly. XCircles are drawn with Arc, which can not be scaled. Where as RCircles are drawn with EllipseWithZ which are scale able.
-Bill
When Chart->View3D is set to true and Chart->View3DOptions->Zoom is not 100, XCircles will not zoom accordingly. XCircles are drawn with Arc, which can not be scaled. Where as RCircles are drawn with EllipseWithZ which are scale able.
-Bill