Search found 129 matches

by elmec
Fri Mar 07, 2014 7:53 am
Forum: VCL
Topic: Still the problem of TScrollPagerTool
Replies: 3
Views: 5912

Still the problem of TScrollPagerTool

The problems are all of version 2014 . // Bug 1 About this bug, I have mentioned before. ScrollPager->ColorBandTool->StartValue = 500; ScrollPager->ColorBandTool->EndValue = 600; // Without the line below, the position set of ColorBandTool above not work! Chart1->BottomAxis->SetMinMax(500, 600); // ...
by elmec
Tue Mar 04, 2014 11:24 am
Forum: VCL
Topic: About the dragging speed of ColorBandTool of ScrollPager
Replies: 1
Views: 4640

About the dragging speed of ColorBandTool of ScrollPager

When there are many data(about one million) in ScrollPager->Series,
the dragging speed of ColorBandTool falls obviously...
Even the series is TFastlineSeries, and I have set it with "Speed Theme" like mentioned in the Examples.

Is there any good way to avoid that...

Thanks in advance.
by elmec
Tue Mar 04, 2014 9:53 am
Forum: VCL
Topic: Failed to change the offset of CursorLine Tool
Replies: 5
Views: 7488

Re: Failed to change the offset of CursorLine Tool

Thank you !
So is it a bug?
by elmec
Mon Mar 03, 2014 10:09 am
Forum: VCL
Topic: Failed to change the offset of CursorLine Tool
Replies: 5
Views: 7488

Re: Failed to change the offset of CursorLine Tool

BTW, I am using the newest version for Firemonkey (201309)
by elmec
Mon Mar 03, 2014 9:16 am
Forum: VCL
Topic: Failed to change the offset of CursorLine Tool
Replies: 5
Views: 7488

Re: Failed to change the offset of CursorLine Tool

If I add some code like below...
when I clicked the Button1, it seems working well...

Code: Select all

void __fastcall TForm2::Button1Click(TObject *Sender)
{
	cursorLine->YValue = 2.0;
}
by elmec
Mon Mar 03, 2014 9:11 am
Forum: VCL
Topic: Failed to change the offset of CursorLine Tool
Replies: 5
Views: 7488

Failed to change the offset of CursorLine Tool

Failed to change the offset of CursorLine Tool by following code.. cursorLine->Snap = true; cursorLine->Series = Series1; Series1->Add(1.0); Series1->Add(2.0); Series1->Add(3.0); // Try to change the Y axis offset of Curorline to 2.0, // but failed. cursorLine->YValue = 2.0; CursorLine.png
by elmec
Mon Feb 10, 2014 12:27 pm
Forum: VCL
Topic: Failed to add Marks manually
Replies: 15
Views: 25322

Re: Failed to add Marks manually

Thanks,
I'll try it and tell you the result.
by elmec
Thu Jan 23, 2014 12:35 am
Forum: VCL
Topic: Failed to add Marks manually
Replies: 15
Views: 25322

Re: Failed to add Marks manually

Hello Pep,

Find the attachment for the Teechart version and example project.
teechart version.png
teechart version.png (115.41 KiB) Viewed 22683 times
by elmec
Thu Jan 23, 2014 12:33 am
Forum: VCL
Topic: Failed to add Marks manually
Replies: 15
Views: 25322

Re: Failed to add Marks manually

Hello Pep,

Find the attachment for the Teechart version and example project.
by elmec
Wed Jan 22, 2014 9:04 am
Forum: VCL
Topic: Failed to add Marks manually
Replies: 15
Views: 25322

Re: Failed to add Marks manually

OK , I'd like to repeat the problem again. ---------Code----------- Series1->Marks->Visible = true; // Add 5 points to Series int xpoints[5] = {10, 20, 30, 40, 50}; int y = 100; for (int i = 0; i < 5; i++) { Series1->AddXY(xpoints[i], y, IntToStr(i + 1)); } Series1->Marks->Item[0]->Text->Text = "tes...
by elmec
Sat Jan 18, 2014 9:58 am
Forum: VCL
Topic: Failed to add Marks manually
Replies: 15
Views: 25322

Re: Failed to add Marks manually

Hello, Thanks for your advice. But would you please tell us how to fix the Marks problem. We cannt wait for the next release. So I have tried to use the following code to modify mark manually. SeriesMark->Marks->Item[3]->Text->Text = "N"; But it didn't work well... Here you're correct, this is a bug...
by elmec
Fri Jan 17, 2014 11:00 am
Forum: VCL
Topic: How to change the color of some label
Replies: 3
Views: 5741

Re: How to change the color of some label

Thank you! Another question, How to access points by x value, not by valueindex? Series1->Marks->Visible = true; // Add 5 points to Series int xpoints[5] = {10, 20, 30, 40, 50}; int y = 100; for (int i = 0; i < 5; i++) { Series1->AddXY(xpoints[i], y, IntToStr(i + 1)); } // How to access some point b...
by elmec
Thu Jan 16, 2014 8:30 am
Forum: VCL
Topic: How to change the color of some label
Replies: 3
Views: 5741

How to change the color of some label

Hello,

We know

Code: Select all

Series->XLabel[i] = "Test"
could be used to change some label text.
but is there a property like

Code: Select all

Series->XLabel->Color[i]
used to change the label text color?

Thanks in advance.
by elmec
Thu Jan 09, 2014 9:51 am
Forum: VCL
Topic: About the data size of AddArray function
Replies: 5
Views: 7863

Re: About the data size of AddArray function

So what should I do ?

Just pass the (data size - 1) instead of the data size ?
Is there any side effect?
by elmec
Wed Jan 08, 2014 12:38 am
Forum: VCL
Topic: About the data size of AddArray function
Replies: 5
Views: 7863

Re: About the data size of AddArray function

Then, what is the below one in FMXTee.Engine.hpp?

Code: Select all

int __fastcall AddArray(double const *Values, const int Values_Size)/* overload */;