Search found 7 matches

by John
Mon May 16, 2011 5:10 pm
Forum: .NET
Topic: Series.Add<T>?
Replies: 3
Views: 4164

Series.Add<T>?

Is there an example on the use of series.Add<t>?

If I define a list<xypoint> can I use this in a line series?

class xypoint
{
double x;
double y;
}
by John
Fri Apr 08, 2011 4:33 pm
Forum: .NET
Topic: Polar Series Axis Labels
Replies: 3
Views: 4575

Re: Polar Series Axis Labels

I will check your code tomorrow. I wanted to add that I am using the following event handlers to clip data outside the display space. private void polarChart_BeforeDraw(object sender, Steema.TeeChart.Drawing.Graphics3D g) { g.ClipEllipse(polarChart.Chart.ChartRect); } private void polarChart_AfterDr...
by John
Thu Apr 07, 2011 11:00 pm
Forum: .NET
Topic: Polar Series Axis Labels
Replies: 3
Views: 4575

Polar Series Axis Labels

When I draw a Polar series wome of the angle labels, located on the outside circle, are getting clipped. It is happening to labels that are greater than 90 degrees. See attached JPEG file.
Chart1.jpg
Chart1.jpg (105.48 KiB) Viewed 4873 times
by John
Tue Mar 15, 2011 7:54 pm
Forum: .NET
Topic: VS2010 Target Framework
Replies: 6
Views: 6444

VS2010 Target Framework

I use Visual Studio 2010 to maintain .NET 3.5 applicatons. When I installed "TeeChart for .NET v2010 Release 4.0.2011.02080" I did not see the TeeChart components in the visual Studio Form Designer becuase I had the target framework set to .NET Framework 3.5. When I switched the target framework to ...
by John
Tue Mar 15, 2011 3:10 am
Forum: .NET
Topic: TeeChartNET2010VSNET2010_4.0.2011.02083 Install Problem
Replies: 1
Views: 2824

Re: TeeChartNET2010VSNET2010_4.0.2011.02083 Install Problem

I fixed the problem. I did not have the Target Framework set to .NET Framework 4

John
by John
Tue Mar 15, 2011 2:34 am
Forum: .NET
Topic: TeeChartNET2010VSNET2010_4.0.2011.02083 Install Problem
Replies: 1
Views: 2824

TeeChartNET2010VSNET2010_4.0.2011.02083 Install Problem

I recently installed TeeChartNET2010VSNET2010_4.0.2011.02083 and I cannot see any Toolbox items in the VS2010 designer. I had uninstall all previous versions and deleted all references in registry and then did an install. When I open VS2010, create a new Forms project, create a form, and then look i...
by John
Sun Mar 13, 2011 6:02 pm
Forum: .NET
Topic: Resize LegendPalette
Replies: 1
Views: 2886

Resize LegendPalette

I have a chart with a ColorGrid and a LegendPalette. I position the LegendPalette to the right of the chart as shown: mLegendPalette = new LegendPalette(tChart1.Chart); mLegendPalette.PositionUnits = PositionUnits.Pixels; mLegendPalette.Axis = LegendPaletteAxis.laOther; mLegendPalette.Width = 60; mL...