Search found 19 matches
- Tue Oct 04, 2016 9:46 am
- Forum: VCL
- Topic: Multiple Pies (Concentric) mouse click not function
- Replies: 1
- Views: 5190
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...
- Fri Sep 23, 2016 6:39 am
- Forum: VCL
- Topic: DonutSeries
- Replies: 8
- Views: 15663
Re: DonutSeries
Ok thanks. Can you give some example please?
- Mon Aug 29, 2016 7:22 am
- Forum: VCL
- Topic: DonutSeries
- Replies: 8
- Views: 15663
Re: DonutSeries
Code: Select all
DonutSeries1.RotationAngle:=50;
Code: Select all
DonutSeries1.Rotate(358);
thanks.
- Thu Aug 25, 2016 6:23 am
- Forum: VCL
- Topic: DonutSeries
- Replies: 8
- Views: 15663
Re: DonutSeries
Hi,
When I pass data (2,1,1,15) to DonutSeries looks not expected. Here is example
How I can fix it?
When I pass data (2,1,1,15) to DonutSeries looks not expected. Here is example
How I can fix it?
- Wed Aug 24, 2016 11:48 am
- Forum: VCL
- Topic: DonutSeries
- Replies: 8
- Views: 15663
Re: DonutSeries
Ok thanks and one question more. So we have Hover with redline, How I can change redColor to some else color
- Fri Aug 19, 2016 6:37 am
- Forum: VCL
- Topic: DonutSeries
- Replies: 8
- Views: 15663
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?
I try to use DonutSeries with style like https://www.steema.com/uploads/products/Pie_Chart.png
but still ineffectual. Is it possible?
TTreeFont
Hi
I have problem with TTreeFont.
got Incompatible types: 'TTeeFont' and 'TFont' message
any solutions?
I have problem with TTreeFont.
Code: Select all
RChart.Legend.Font := FFont;
any solutions?
- Fri Jan 15, 2016 6:13 am
- Forum: FMX
- Topic: clicked part for axis
- Replies: 4
- Views: 13582
Re: clicked part for axis
nevermind, i have managed to get the full rect based on first items left and last items right. thanks
- Fri Jan 15, 2016 2:52 am
- Forum: FMX
- Topic: clicked part for axis
- Replies: 4
- Views: 13582
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.
- Thu Jan 14, 2016 2:22 am
- Forum: FMX
- Topic: clicked part for axis
- Replies: 4
- Views: 13582
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...
- Tue Dec 22, 2015 1:46 am
- Forum: FMX
- Topic: Get the visible points
- Replies: 9
- Views: 22330
Re: Get the visible points
Hi,
This will certainly do the trick for dateformat, however i still need
To only show xvalues that i have added. would it be possible to calculate this manually aswell?
This will certainly do the trick for dateformat, however i still need
Code: Select all
LabelStyle := talPointValue;
- Mon Dec 21, 2015 6:56 am
- Forum: FMX
- Topic: Get the visible points
- Replies: 9
- Views: 22330
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...
- Fri Dec 18, 2015 1:38 am
- Forum: FMX
- Topic: Get the visible points
- Replies: 9
- Views: 22330
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...
- Thu Dec 17, 2015 9:46 am
- Forum: FMX
- Topic: Get the visible points
- Replies: 9
- Views: 22330
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?
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?
- Wed Dec 16, 2015 2:28 am
- Forum: FMX
- Topic: Get the visible points
- Replies: 9
- Views: 22330
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...