Search found 115 matches

by bdw
Wed Aug 13, 2014 10:39 pm
Forum: VCL
Topic: TeeChart Builder
Replies: 1
Views: 4680

TeeChart Builder

Hello,

I was just reading your news and noticed the TeeChart Builder Mobile application you have on ITunes.

The news item does not indicate what technology you are using for the application, is it using FMX ?
by bdw
Wed Jun 25, 2014 11:23 pm
Forum: VCL
Topic: TMapSeries title position
Replies: 12
Views: 18658

Re: TMapSeries title position

Basic example as follows :- TMapSeries* map = new TMapSeries(Chart1); map->Marks->Visible = true; Chart1->AddSeries(map); Chart1->Legend->Visible = false; TTeePolygon* shape = map->Shapes->Add(); shape->Text = "line 1\rline 2\rline 3"; shape->Closed = true; shape->Points->AddXY(10, 10); shape->Point...
by bdw
Tue Jun 24, 2014 10:08 pm
Forum: VCL
Topic: TMapSeries title position
Replies: 12
Views: 18658

TMapSeries title position

Hello, I've just updated a project to the 2014.11.140512 and have an issue with a multiline title that used to position itself nicely in the middle of the rectangle shape. I have tried turning off the new MapMarks->AutoSize and MapMarks->Centroid but no difference to its location. Example image of t...
by bdw
Tue Apr 22, 2014 8:25 pm
Forum: VCL
Topic: XE6
Replies: 7
Views: 12372

Re: XE6

Great news, thanks Narcis I'll give them a whirl...
by bdw
Wed Apr 16, 2014 10:10 pm
Forum: VCL
Topic: XE6
Replies: 7
Views: 12372

XE6

Hey Guys,
We have the 2014 full source and thought I'd give win32 XE6 compile a try but got a few compile errors.
Is there a beta test for XE6 and do you have a time frame release scheduled for this ?
Regards,
Brett
by bdw
Tue Apr 15, 2014 9:41 pm
Forum: VCL
Topic: 2014 upgrade giving linker unresolved external
Replies: 4
Views: 7952

Re: 2014 upgrade giving linker unresolved external

I have got it compiling now. Initially I had tried installing the 2014 binary and then installing source but got that error. Second uninstalled 2014 and reinstalled 2013 and all compiled fine. Then installed 2014 source but got the same compile error. Enviro's were set correctly but 2013 was in the ...
by bdw
Tue Apr 15, 2014 8:54 pm
Forum: VCL
Topic: 2014 upgrade giving linker unresolved external
Replies: 4
Views: 7952

Re: 2014 upgrade giving linker unresolved external

Yes running XE5 update2 hot fix 1,2,3,4,and 5 Quite strange. I have only got XE5 installed at present and just removed XE4, XE. I just re-installed the 2014 source and compiled win32. Checked the TEEINCPATH and TEELIBPATH enviro's have changed to this path and I get the same error. As mentioned Delp...
by bdw
Tue Apr 15, 2014 5:46 am
Forum: VCL
Topic: 2014 upgrade giving linker unresolved external
Replies: 4
Views: 7952

Re: 2014 upgrade giving linker unresolved external

If I compile a delphi VCL app it runs fine but 2014 CPP fails with the linker errors.

I have tried the 2014 binary install by itself and no luck I still get the linker error.

If I uninstall 2014 and go back to 2013 the test app compiles no problem
by bdw
Tue Apr 15, 2014 4:52 am
Forum: VCL
Topic: 2014 upgrade giving linker unresolved external
Replies: 4
Views: 7952

2014 upgrade giving linker unresolved external

Hello, I've just been trying to update from TChart 2013 to the latest 2014.10.140220 but I'm getting the following linker errors :- [ilink32 Error] Error: Unresolved external '__fastcall Vcltee::Teengine::TChartAxis::SetMinMax(const const double, const const double)' referenced from C:\SRC\C.XE\EDS\...
by bdw
Thu Jan 30, 2014 9:06 pm
Forum: VCL
Topic: Histogram even number bin size
Replies: 4
Views: 7788

Re: Histogram even number bin size

In thinking some more, this will solve the x-axis numbering but won't effect the legend etc which uses the bin size and maximum number to calculate the percentages.

So I guess what I'm saying for the 30-40 band I'd want the legend to say 0%.

Maybe a fixed size x-axis will do this, I'll have to try.
by bdw
Thu Jan 30, 2014 8:56 pm
Forum: VCL
Topic: XE5 help file install with tchart source
Replies: 3
Views: 6320

Re: XE5 help file install with tchart source

Thanks Yeray, its been a while since I needed to look at the help file. I take it if you install the source after, no uninstall of the binary is required, you just compile it will just update the bpl's etc. That way I can test any Beta code by compiling it and then change back to the release by comp...
by bdw
Thu Jan 30, 2014 8:46 pm
Forum: VCL
Topic: Histogram even number bin size
Replies: 4
Views: 7788

Re: Histogram even number bin size

Hi Yeray, Yes I'm currently using the THistogramFunction for this particular graph. Basically the graphing works correctly if the data distribution has something in all the bins. If say there is no data in the 30-40 range and your bin range is 4 you get say 29 as your max you get 29 / 4 as your bin ...
by bdw
Wed Jan 29, 2014 9:08 pm
Forum: VCL
Topic: Histogram even number bin size
Replies: 4
Views: 7788

Histogram even number bin size

Hello, I have a histogram where I want to always have even numbered bin sizes regardless of the data added to the graph. For example 4 bins with a range of 0 - 10, 10-20, 20-30, and 30-40. Is it possible to set these bin boundaries with the Histogram function or would it be easier for me to roll my ...
by bdw
Wed Jan 29, 2014 9:02 pm
Forum: VCL
Topic: XE5 help file install with tchart source
Replies: 3
Views: 6320

XE5 help file install with tchart source

Hello,

I was wondering how do I install the tchart help files under win7 XE5 with a source code install ?

In the client area there is TChartVCL2010Help.zip but this does not seem to be correct.

Is the help file only installed when using the binary version ?
by bdw
Thu Jan 16, 2014 7:49 pm
Forum: VCL
Topic: XE5 Update 2 ambiguity TGRectF
Replies: 3
Views: 7664

Re: XE5 Update 2 ambiguity TGRectF

Hi Yeray,

Yes on my system I had to move the "user supplied" section inside the namespace declaration to avoid all the ambiguity errors that were occurring.

For me this has been an issue on each update.

Brett