Search found 70 matches

by realsol
Mon Dec 04, 2017 9:51 pm
Forum: FMX
Topic: TeeChart Animation
Replies: 24
Views: 63805

Re: TeeChart Animation

Thanks. I will take a look.
by realsol
Mon Dec 04, 2017 3:49 am
Forum: FMX
Topic: TeeChart Animation
Replies: 24
Views: 63805

Re: TeeChart Animation

Also, is there a way to make the legend multiline. I would like the dates displayed in the legend on the second line of the legend item.
by realsol
Mon Dec 04, 2017 3:48 am
Forum: FMX
Topic: TeeChart Animation
Replies: 24
Views: 63805

TeeChart Animation

I have 2 charts separated by a splitter. The bar chart lets users select months, and that months categories are displayed in the bottom pie chart. I want to make sure the user sees that clicking on the bar does indeed change the pie. I am new to Delphi Berlin (from Delphi 5) and am new to animations...
by realsol
Thu Aug 17, 2017 7:20 pm
Forum: FMX
Topic: Show Selected using 2 charts
Replies: 3
Views: 13774

Re: Show Selected using 2 charts

Hello realsol, I think you can active the Hover propierty. The code below shows you how? Chart1.Hover.Visible := Hover; Hoping this helps you. Thanks in advance This gave me an error on 'Hover', so I tried this in the OnSeriesClick Event: Chart1.Hover.Visible := true; But it still doesn't keep the ...
by realsol
Mon Aug 14, 2017 5:42 am
Forum: FMX
Topic: Show Selected using 2 charts
Replies: 3
Views: 13774

Show Selected using 2 charts

Attached are two charts. When the user clicks on a month in the BarChart (January in this case), it displays that months expense categories below in a PieChart. Is there any way to color or keep the clicked bar highlighted (like when hovering over it)? This way the user always see which month is bei...
by realsol
Wed Jul 19, 2017 4:11 pm
Forum: FMX
Topic: Auto display hint when text is too long
Replies: 1
Views: 8362

Auto display hint when text is too long

I am trying to figure out the best way, if even possible, to display a hint when a user hovers above a row/column whose text is too long to display all the text within the column. Is this possible and if so, could you give me an example?
by realsol
Fri Jul 14, 2017 6:00 pm
Forum: FMX
Topic: Legend, show Series Name and Series Total Value
Replies: 5
Views: 19489

Re: Legend, show Series Name and Series Total Value

Thanks. I ended up using the OnGetLegendText for the Chart and added

Code: Select all

if Series1.Labels[Index] = '' then
      Series1.Labels[index]:='No Categories';
Worked perfectly. Thanks.
by realsol
Thu Jul 13, 2017 5:36 pm
Forum: FMX
Topic: Legend, show Series Name and Series Total Value
Replies: 5
Views: 19489

Re: Legend, show Series Name and Series Total Value

I have another question along this same lines. I have a pie chart of categories (Attached). If transactions don't have any assigned category, the legend just displays the amount. I would like to add the text 'No Categories' in front of the amount but I can't seem to format it the way it is in the le...
by realsol
Tue Jun 20, 2017 6:45 pm
Forum: FMX
Topic: Display/Explode or drill down the 'Other Slice'
Replies: 1
Views: 9772

Display/Explode or drill down the 'Other Slice'

I know I have asked this in the past but I can't seem to find the answer now that I am ready to code it. How do I display the 'Other Slice' items when a user clicks on it?

Thanks.
by realsol
Thu Jun 08, 2017 5:07 pm
Forum: FMX
Topic: BarChart Side by Side
Replies: 13
Views: 29496

Re: BarChart Side by Side

Got it working. I needed to Sort each of the 1 to 4 Series that might be active in a for to loop.

Code: Select all

          TopQuery.Active := true;
          DBChart2[i].XValues.Order:=loAscending;
          DBChart2[i].XValues.Sort;
          DBChart2.Repaint;
Thanks for your help!
by realsol
Thu Jun 08, 2017 3:13 pm
Forum: FMX
Topic: BarChart Side by Side
Replies: 13
Views: 29496

Re: BarChart Side by Side

After looking at the code again, I figure the 'sort' is a method, thus needs values to sort, so I moved the code right after I assign the series it's values, but they still overlap. TopQuery.Active := true; if DBChart2[1] <> nil then begin DBChart2[1].XValues.Order:=loAscending; DBChart2[1].XValues....
by realsol
Thu Jun 08, 2017 2:58 pm
Forum: FMX
Topic: BarChart Side by Side
Replies: 13
Views: 29496

Re: BarChart Side by Side

I tried to add that to the end of my OnCreate method:

Code: Select all

  DBChart2[1].XValues.Order:=loAscending;
  DBChart2[1].XValues.Sort;
  DBChart2.Repaint;
Same result as before. Again, only when printed in 3d.
by realsol
Wed Jun 07, 2017 3:41 pm
Forum: FMX
Topic: BarChart Side by Side
Replies: 13
Views: 29496

Re: BarChart Side by Side

I have 'None' already set in the ide so I added to the MainForm.OnCreate. No difference. Also, in this situation, X is a date. Late I change the 'X' value to an integer set to 'None' and still they overlap. I hate not using 3d on my first release using your product since it looks so nice and I have ...
by realsol
Fri Jun 02, 2017 5:18 pm
Forum: FMX
Topic: BarChart Side by Side
Replies: 13
Views: 29496

Re: BarChart Side by Side

If I set View3d to false, all the bars line up like they are suppose too. Here are 3 images.

1. Chart in 3d
2. Chart without 3d
3. My chart 3d settings
by realsol
Fri Jun 02, 2017 2:18 pm
Forum: FMX
Topic: BarChart Side by Side
Replies: 13
Views: 29496

Re: BarChart Side by Side

Are there any settings I might have accidentally changed that would cause this? I think I used the basic bar chart settings but could have accidentally changed a setting that causes this. What is weird is some months print OK. Others don't.