Search found 228 matches

by TestAlways
Thu Jun 03, 2010 4:05 pm
Forum: VCL
Topic: stack areas again :-)
Replies: 10
Views: 16996

Re: stack areas again :-)

I found a fix--I do self stacking. Here is a screen shot of what I am looking for (the unevenness in the chart on the slope is due to rounding errors--I didn't type in the decimals for the data): http://www.retireneeds.com/misc/ChartAreaSelfStacked.png I changed the code so that it stacks itself: fo...
by TestAlways
Thu Jun 03, 2010 2:20 pm
Forum: VCL
Topic: stack areas again :-)
Replies: 10
Views: 16996

Re: stack areas again :-)

I recommend you to have a look at the All Features\Welcome!\Chart Styles\Area\Area TreatNulls example in the new features example, available at TeeChart's program group. I installed the 8.06 with full source, which doesn't look like it includes the demo. Is there any way to just get the demo withou...
by TestAlways
Wed Jun 02, 2010 2:48 pm
Forum: VCL
Topic: stack areas again :-)
Replies: 10
Views: 16996

Re: stack areas again :-)

First of all notice that to use stacked area series you need to have same number of points and those must have the same X values. This not being the case might lead to such problems. I was aware of that and int he header of the demo app put the number of points for each series: http://www.retirenee...
by TestAlways
Tue Jun 01, 2010 2:23 pm
Forum: VCL
Topic: stack areas again :-)
Replies: 10
Views: 16996

Re: stack areas again :-)

What I am wanting is a little different. When a series goes to zero, I want it to step down right away, not draw a line to zero. Here is a sample chart that steps down: http://www.retireneeds.com/misc/SteppedChart.png The green area series works perfectly here. Let me explain what I am showing--the ...
by TestAlways
Sat May 29, 2010 10:39 pm
Forum: VCL
Topic: stack areas again :-)
Replies: 10
Views: 16996

stack areas again :-)

8.06, D2007 I have spent all afternoon (3+ hours now-) trying to figure out how to get the attached demo to work. There are three different datasets in the demo, and none of them look right--maybe I am trying to accomplish something that is not possible. I want the area to be full, with no dead area...
by TestAlways
Fri May 14, 2010 2:57 am
Forum: VCL
Topic: Legend disappears
Replies: 6
Views: 9657

Re: Legend disappears

Yes. I am not sure how the line got into the DFM, but that fixes it.

Thanks
Ed Dressel
by TestAlways
Fri Apr 30, 2010 5:24 pm
Forum: VCL
Topic: Stacked Area--again
Replies: 3
Views: 5198

Re: Stacked Area--again

Thanks. I was using modified code provided in a previous post ( http://www.teechart.net/support/viewtopic.php?f=3&t=10352 ). I modified the original code, and applied the mod to my code. This fixed it. Please let me know if this is correct. Ed Dressel procedure TForm46.UpdateChart; var I: Integer; J...
by TestAlways
Fri Apr 30, 2010 2:50 pm
Forum: VCL
Topic: Legend disappears
Replies: 6
Views: 9657

Re: Legend disappears

I cannot understate how big of a problem this is for me--it can result in lawsuits for my users and myself.

I have the source---can you tell me how it can be fixed?
by TestAlways
Thu Apr 29, 2010 3:20 pm
Forum: VCL
Topic: Stacked Area--again
Replies: 3
Views: 5198

Stacked Area--again

I thought I had this figured out but alas, I got put it in my deployment app and it not working right. I created a demo that shows 3 stacked area series, but I cannot figure out what I am doing wrong. Here is a screen shot: http://www.retireneeds.com/misc/ChartStackedArea2.png I need the empty space...
by TestAlways
Wed Apr 28, 2010 6:17 pm
Forum: VCL
Topic: Legend disappears
Replies: 6
Views: 9657

Legend disappears

8.06 I have a chart chart that I allow the user to select where they put the legend--top, left, right, bottom, via a popup menu. This is a significant problem for me because there are laws for my software that there must be a legend. It is very simple code. if miLegendLeft.Down then chrtIncomeSource...
by TestAlways
Wed Apr 28, 2010 3:50 pm
Forum: VCL
Topic: Charting stacked area series--but different types of xvalues
Replies: 1
Views: 4203

Charting stacked area series--but different types of xvalues

I have data for a person (and potentially their spouse) saving and spending money from various retirement accounts. The accounts can have different number of deposits per year, but charting accumulation for end of year values, and at retirement, works fine. The stacked area series work great here. h...
by TestAlways
Tue Apr 20, 2010 11:28 pm
Forum: VCL
Topic: Stacked area vs Stcked Bar returns different Y Max
Replies: 1
Views: 3387

Stacked area vs Stcked Bar returns different Y Max

I have a chart that based on a user setting can either be displayed as stacked bar or stacked area. Here are the images below: http://www.tbinc.com/misc/ChartStackedArea.png and http://www.tbinc.com/misc/ChartStackedBar.png The code doesn't change except for the way the series is created--the chart ...
by TestAlways
Wed Apr 14, 2010 11:11 pm
Forum: VCL
Topic: v 2010: legend border visiblity
Replies: 1
Views: 3493

v 2010: legend border visiblity

v 2010.

setting the Legend/Symbols/Border.Visible to false shows a white border rather than no border.

Ed Dressel
by TestAlways
Wed Apr 14, 2010 10:28 pm
Forum: Beta versions
Topic: Changing pie series color in TChart 8 to TChart 2010
Replies: 3
Views: 33679

Re: Changing pie series color in TChart 8 to TChart 2010

HKEY_CURRENT_USER\Software\Steema Software\TeeChart Pro\Editor\DefaultPalette I checked the value and there is nothing there (I removed it). Still the same problem. I checked the .ColorPaletteIndex of the chart, and it is set to zero after the constructor's inherited is called. I copied the chart's...
by TestAlways
Wed Apr 14, 2010 12:35 am
Forum: Beta versions
Topic: Changing pie series color in TChart 8 to TChart 2010
Replies: 3
Views: 33679

Changing pie series color in TChart 8 to TChart 2010

[I've already contact Steema to upgrade to TChart 2010--but cannot put in my release application without some testing.] I would like to use the pie series colors in TChart 2010 in TChart 8, so that it --how can I do that. What is the color array, and how can I make it so that charts will use that as...