Search found 14710 matches

by Narcís
Wed Mar 30, 2016 6:56 am
Forum: FMX
Topic: Teecommander
Replies: 18
Views: 44432

Re: Teecommander

PLEASE could you give me a code example? I still learn a lot from you. Find attached a basic example of how you should combine mouse events and commander code to achieve what you request. It is not fully functional, you should look further at TeeCommander on how events are combined. Regarding mobil...
by Narcís
Wed Mar 30, 2016 6:36 am
Forum: FMX
Topic: Teecommander
Replies: 18
Views: 44432

Re: Teecommander

walter0316 wrote: Then I must recompile the stuff, and I do not know how it done,s o that it will work with XE6.
Just run TeeRecompile tool shipped with the source code installer to compile all TeeChart packages and install them into your environment of choice.
by Narcís
Wed Mar 30, 2016 6:35 am
Forum: FMX
Topic: Teecommander
Replies: 18
Views: 44432

Re: Teecommander

walter0316 wrote:the demo does not work properly with XE6. Ara has send me a zip but not working fine. (delphi XE6)
So I have noe demo available.
This is the VCL demo included with the binary installer, not the Firemonkey demo. Please run Tee9New.exe to find out that demo.
by Narcís
Tue Mar 29, 2016 3:00 pm
Forum: FMX
Topic: Teecommander
Replies: 18
Views: 44432

Re: Teecommander

Hi Walter, is there a way to make the button larger so That I do not use a mouse but could use my fingers? Yes, you can customize that at TCustomTeeCommander.CreateButton in TeeComma.pas. ANd How can I disable the Print and save button in the commander, as SHOWMODAL is not installed in my Tablet. Yo...
by Narcís
Tue Mar 29, 2016 2:37 pm
Forum: FMX
Topic: Axis Title of DEPTH RIGHT not displayed
Replies: 3
Views: 12168

Re: Axis Title of DEPTH RIGHT not displayed

Hi Walter, Depth axis is not visible by default. You need to enable it: Series1.FillSampleValues; Series1.VertAxis:=aBothVertAxis; Series1.HorizAxis:=aBothHorizAxis; Chart1.Axes.Bottom.Title.Text:='bottom axis title'; Chart1.Axes.Top.Title.Text:='top axis title'; Chart1.Axes.Left.Title.Text:='left a...
by Narcís
Tue Mar 29, 2016 2:31 pm
Forum: FMX
Topic: Teecommander
Replies: 18
Views: 44432

Re: Teecommander

Hi Walter, Maybe cou could tell me what I should write to a buttonclick method when I want that this botton should MOVE from the Commander. I already posted that code in my previous answer . PS: BWT when I define a SERIES als POINT3DSeries and I click in the IDE Editor on the Series I get an error i...
by Narcís
Tue Mar 29, 2016 2:22 pm
Forum: VCL
Topic: [C++ Builder] Residual Memory after ClearValues
Replies: 3
Views: 10062

Re: [C++ Builder] Residual Memory after ClearValues

Hello Marcelo, Using C++ Builder 10 Seattle and also some earlier versions you can use ReportMemoryLeaksOnShutdown like this: int WINAPI _tWinMain(HINSTANCE, HINSTANCE, LPTSTR, int) { try { Application->Initialize(); Application->MainFormOnTaskBar = true; Application->CreateForm(__classid(TForm1), &...
by Narcís
Tue Mar 29, 2016 2:12 pm
Forum: FMX
Topic: Want to click on Series in Legend to de/activate it
Replies: 2
Views: 10182

Re: Want to click on Series in Legend to de/activate it

Hi Walter,

Have you tried using the line below?

Code: Select all

  Chart1.Legend.CheckBoxes:=True;
by Narcís
Tue Mar 29, 2016 2:11 pm
Forum: FMX
Topic: Axis Title of DEPTH RIGHT not displayed
Replies: 3
Views: 12168

Re: Axis Title of DEPTH RIGHT not displayed

Hi Walter, Code snippet below works fine for me here. Can you please check it works at your end? procedure TForm1.FormCreate(Sender: TObject); begin Series1.FillSampleValues; Series1.VertAxis:=aBothVertAxis; Series1.HorizAxis:=aBothHorizAxis; Chart1.Axes.Bottom.Title.Text:='bottom axis title'; Chart...
by Narcís
Tue Mar 29, 2016 2:05 pm
Forum: FMX
Topic: Teecommander
Replies: 18
Views: 44432

Re: Teecommander

Hello, How Can I call the MOVE-Function of the Teecommander by hitting one of my self-drawn buttons? That's what that button does: Procedure DoMove; var tmpZ : Double; begin if not FPanel.Canvas.SupportsFullRotation then // SupportsZoom2D Set3D; With FPanel.View3DOptions do begin tmpZ:=1; HorizOffse...
by Narcís
Tue Mar 29, 2016 1:50 pm
Forum: FMX
Topic: Firemonkey demo doesn't run under OSX
Replies: 3
Views: 11199

Re: Firemonkey demo doesn't run under OSX

Hello,

You can try compiling this GitHub demo (https://github.com/Steema/TeeChart-for- ... SeriesDemo) for Android.
by Narcís
Tue Mar 29, 2016 1:24 pm
Forum: FMX
Topic: Emailing a Chart
Replies: 3
Views: 10861

Re: Emailing a Chart

Hi Bruce,

Yes, you can do this:

Code: Select all

uses FMXTee.Store;

procedure TForm1.FormCreate(Sender: TObject);
begin
  SaveChartToFile(TCustomChart(Chart1), 'g:\temp\chart1.tee');
end;
by Narcís
Tue Mar 29, 2016 1:02 pm
Forum: VCL
Topic: Invalid floating point operation occurs on repaint
Replies: 1
Views: 6002

Re: Invalid floating point operation occurs on repaint

Hi Andrew,

Many apologies for the bugzilla inactivity. I'll investigate what went wrong with your ticket. As I just posted at bugzilla, can you please attach a simple example project we can run "as-is" and let us know the exact steps we should follow to reproduce the problem here? Thanks.
by Narcís
Tue Mar 29, 2016 11:52 am
Forum: VCL
Topic: Group Slices getting values
Replies: 1
Views: 5504

Re: Group Slices getting values

Hi Clive, The code snippet below returns the number of one last additional slice containing all grouped slices. So this is not possible for now. I have added your request to the wish-list to be considered for inclusion in future releases: http://bugs.teechart.net/show_bug.cgi?id=1480 procedure TForm...
by Narcís
Tue Mar 29, 2016 9:27 am
Forum: FMX
Topic: TTeePen
Replies: 5
Views: 15143

Re: TTeePen

Yes, that's correct.