Search found 37 matches

by Nati
Tue Aug 11, 2015 8:36 am
Forum: VCL
Topic: Installation sequence
Replies: 12
Views: 20802

Re: Installation sequence

Thanks, I emailed them.
by Nati
Tue Aug 11, 2015 8:11 am
Forum: VCL
Topic: Installation sequence
Replies: 12
Views: 20802

Re: Installation sequence

So even though I'm asking for the same version I'm already registered to but that is compatible with XE3 that you support anyway, I'm not eligible to it and need to re-register? a bit unfair I might say. If you didn't support XE3 for the version I have, I could understand it but this is not the case.
by Nati
Tue Aug 11, 2015 7:54 am
Forum: VCL
Topic: Installation sequence
Replies: 12
Views: 20802

Re: Installation sequence

The latest binary I have is for XE2 so I guess I'm before Nov 2012, can I have access to that binary? in release.txt I have this: Release Notes 13th June 2012 TeeChart VCL version 2012 Build 2012.06.120613 I didn't touch any of the sources but I remember having problems installing the sources in the...
by Nati
Mon Aug 10, 2015 3:18 pm
Forum: VCL
Topic: Installation sequence
Replies: 12
Views: 20802

Re: Installation sequence

I uninstalled and re-installed from scratch. I ran the recompile.exe file with verbose and got the following: TeeDB917.dpk(44) VCLTee.TeeData.pas(1) TeeDefs.inc(394) VCLTee.TeeData.pas(47) VCLTee.TeeData.pas(52) VCLTee.TeeData.pas(52) VCLTee.TeeData.pas(52) VCLTee.TeeData.pas(53) VCLTee.TeeData.pas(...
by Nati
Mon Aug 10, 2015 3:12 pm
Forum: VCL
Topic: Installation sequence
Replies: 12
Views: 20802

Re: Installation sequence

OK, the answer is no so apparently I can't install the binaries version in XE3, I will have to use the sources version so I'm back to square one.
Where can I see the exact version of the sources version?
by Nati
Mon Aug 10, 2015 3:08 pm
Forum: VCL
Topic: Installation sequence
Replies: 12
Views: 20802

Re: Installation sequence

I now remembered that we have a problem with the sources version in the past so we always installed the binaries version.
I now see that un binaries version for teechart 2012, there is an installation up to XE2 while I use XE3, will it be ok to try to install the XE2 into XE3?
by Nati
Mon Aug 10, 2015 2:54 pm
Forum: VCL
Topic: Installation sequence
Replies: 12
Views: 20802

Re: Installation sequence

I use the sources version, I ran the recompile file you wrote about and got the following error in the log: TeeDB917 Cannot recompile Delphi package: TeeDB917.dpk Embarcadero Delphi for Win32 compiler version 24.0 Copyright (c) 1983,2012 Embarcadero Technologies, Inc. VCLTee.TeeData.pas(123) Error: ...
by Nati
Mon Aug 10, 2015 2:38 pm
Forum: VCL
Topic: Installation sequence
Replies: 12
Views: 20802

Installation sequence

I'm trying to re-install Steema's TChart on delphi XE3 and its companion but didn't understand the sequence of things I installed the installation file of 2012 and got 2 packages installed and when I open my project that contains the chart components, I keep getting errors about missing classes: TCh...
by Nati
Sun Mar 25, 2012 8:18 am
Forum: VCL
Topic: cusom colors for pie
Replies: 5
Views: 8190

Re: cusom colors for pie

I'm doing the following, just to check: for i := 0 to DBChart1.Series[0].ValuesList.Count - 1 do DBChart1.Series[0].ValueColor := $00FE9B82; and even though DBChart1.Series[0].ValuesList.Count returns 2 I get list index out of bounds(1) error for DBChart1.Series[0].ValueColor (when i equals 1) If th...
by Nati
Sun Mar 25, 2012 8:12 am
Forum: VCL
Topic: cusom colors for pie
Replies: 5
Views: 8190

Re: cusom colors for pie

Hi

I have a set of several colors and I don't know how many colors I will need in pie so instead of looping and guessing, can't I just set a palette and let it use it automatically?
by Nati
Thu Mar 22, 2012 4:32 pm
Forum: VCL
Topic: cusom colors for pie
Replies: 5
Views: 8190

cusom colors for pie

Hi

We have a pie that is based on a clientdataset
we want to give it our own colors but couldn't find a way to do that, it seems to have a fixed number of themes to be used but not a manual one
please advice
Thanks
by Nati
Sun Jan 08, 2012 8:22 am
Forum: VCL
Topic: changing the color of some of the labels
Replies: 27
Views: 39768

Re: changing the color of some of the labels

How can I know the relevant date per label?
How can I know which labels are visible?
by Nati
Wed Jan 04, 2012 4:36 pm
Forum: VCL
Topic: changing the color of some of the labels
Replies: 27
Views: 39768

Re: changing the color of some of the labels

I think the problem is simple though I don't know how I can solve it. While aText represents the label to be drawn, it has no direct correlation to the XValues of the series. This is the reason why the label says 01/12/11 but the correspondent XValue is 13/12/11. In short, I need to know the date va...
by Nati
Wed Jan 04, 2012 3:44 pm
Forum: VCL
Topic: changing the color of some of the labels
Replies: 27
Views: 39768

Re: changing the color of some of the labels

I started simple and all labels were colored as expected, then I wanted to distinguish those to be colored and for that I wanted to retrieve the date value of the label to be colored. I ran your loop exactly and got the lIdx, when I checked the value of that lIdx I saw 13/12/11 so it colored it blue...
by Nati
Wed Jan 04, 2012 8:39 am
Forum: VCL
Topic: changing the color of some of the labels
Replies: 27
Views: 39768

Re: changing the color of some of the labels

I tried using your loop in order to know the value by using the lSrs.XValue[lIdx] but while the text shows 01/12/11, the value given to me from the lIdx is 13/12/11, so while 13/12/11 should be colored blue (and it is according to the code), what I see in the graph is that 01/12/11 is blue though th...