Search found 19 matches

by n2n
Tue Oct 04, 2016 9:46 am
Forum: VCL
Topic: Multiple Pies (Concentric) mouse click not function
Replies: 1
Views: 4804

Multiple Pies (Concentric) mouse click not function

Current using BDS2006, When i apply 2 pie series with (Concentric), Series1 and Series2, I have handled OnClick event for both series but only Series2(Outer Pie) OnClick will be triggered. I have tried to handle TChart.OnClickSeries, but regardless of which series I am clicking, in OnClickSeries eve...
by n2n
Fri Sep 23, 2016 6:39 am
Forum: VCL
Topic: DonutSeries
Replies: 8
Views: 14468

Re: DonutSeries

Ok thanks. Can you give some example please?
by n2n
Mon Aug 29, 2016 7:22 am
Forum: VCL
Topic: DonutSeries
Replies: 8
Views: 14468

Re: DonutSeries

1.png
1.png (5.14 KiB) Viewed 14520 times
hi Yeray

Code: Select all

DonutSeries1.RotationAngle:=50;
it is no solution in my case cause we have timer with

Code: Select all

DonutSeries1.Rotate(358);
anyway there are few pic with bags You should to fix them

thanks.
by n2n
Thu Aug 25, 2016 6:23 am
Forum: VCL
Topic: DonutSeries
Replies: 8
Views: 14468

Re: DonutSeries

Hi,
When I pass data (2,1,1,15) to DonutSeries looks not expected. Here is example
How I can fix it?
by n2n
Wed Aug 24, 2016 11:48 am
Forum: VCL
Topic: DonutSeries
Replies: 8
Views: 14468

Re: DonutSeries

Ok thanks and one question more. So we have Hover with redline, How I can change redColor to some else color
by n2n
Fri Aug 19, 2016 6:37 am
Forum: VCL
Topic: DonutSeries
Replies: 8
Views: 14468

DonutSeries

Hi,
I try to use DonutSeries with style like https://www.steema.com/uploads/products/Pie_Chart.png

but still ineffectual. Is it possible?
by n2n
Thu Aug 11, 2016 5:43 am
Forum: VCL
Topic: TTreeFont
Replies: 1
Views: 5074

TTreeFont

Hi
I have problem with TTreeFont.

Code: Select all

RChart.Legend.Font := FFont;
got Incompatible types: 'TTeeFont' and 'TFont' message

any solutions?
by n2n
Fri Jan 15, 2016 6:13 am
Forum: FMX
Topic: clicked part for axis
Replies: 4
Views: 11985

Re: clicked part for axis

nevermind, i have managed to get the full rect based on first items left and last items right. thanks
by n2n
Fri Jan 15, 2016 2:52 am
Forum: FMX
Topic: clicked part for axis
Replies: 4
Views: 11985

Re: clicked part for axis

That method will get me the rect of each label, but i need to get the rect of Axis, just as shown below, if i use this method it will not trigger when user click on the gap between labels.
by n2n
Thu Jan 14, 2016 2:22 am
Forum: FMX
Topic: clicked part for axis
Replies: 4
Views: 11985

clicked part for axis

im trying to get the clicked part for axis, im using CalcClickedPart function, it works but if i click on axis labels it wont trigger. also protected AxisRect function is returning rect excluding the label part, if you look at my screenshot, it will only work if i click on the axis line but it doesn...
by n2n
Tue Dec 22, 2015 1:46 am
Forum: FMX
Topic: Get the visible points
Replies: 9
Views: 19860

Re: Get the visible points

Hi,

This will certainly do the trick for dateformat, however i still need

Code: Select all

LabelStyle := talPointValue;
To only show xvalues that i have added. would it be possible to calculate this manually aswell?
by n2n
Mon Dec 21, 2015 6:56 am
Forum: FMX
Topic: Get the visible points
Replies: 9
Views: 19860

Re: Get the visible points

Hi, I just realized after using: LabelStyle := talPointValue; To limit labels with only the ones with value, it will significantly reduce the performance when we have 1000 over points on our BottomAxis, and even though only few of the labels are showing actually but it will trigger the OnGetAxisLabe...
by n2n
Fri Dec 18, 2015 1:38 am
Forum: FMX
Topic: Get the visible points
Replies: 9
Views: 19860

Re: Get the visible points

Hi, Changing my Xvalues to string will cause me alot of problems, i do actually use the xvalue double data for some calculations, would there be any other workaround to overcome this with maintaining Xvalue with double data and not using Labels? also im currently using OnGetAxisLabel, to convert TDa...
by n2n
Thu Dec 17, 2015 9:46 am
Forum: FMX
Topic: Get the visible points
Replies: 9
Views: 19860

Re: Get the visible points

Thanks for the reply,

Last problem solved, however how may i delete the space between missing dates? for example i have value for 1st dec and 5th dec and 3 days in between with no data, currently it will create empty space for them, how can i remove them?
by n2n
Wed Dec 16, 2015 2:28 am
Forum: FMX
Topic: Get the visible points
Replies: 9
Views: 19860

Get the visible points

I insert 1000 values to my candle series, X-axis is DateTime 1. i want to get the number of currently displaying points when i zoom in so i can scale candles widths, problem is when i use VisibleCount of series it will return 1000 which is all my data, but after i zoomed in i have like only 5 points...