Search found 3132 matches

by Sandra
Wed Mar 04, 2009 10:25 am
Forum: .NET
Topic: Area series not displaying after upgrading to v3.5.3330
Replies: 7
Views: 11680

Hi, John

I could reproduce your problem and I have added to the list of Bug Report with number [TF02013920] we will try to fix it for next versions of TeeChart .NET.

Thanks,
by Sandra
Tue Mar 03, 2009 11:17 am
Forum: .NET
Topic: How Do I get the Y value of a series (cursor tool intersect)
Replies: 2
Views: 6722

I check that valueIndex not working properly.I have added to the list of Bug Report with number [TF02013917] we will try to fix it for next versions of TeeChart .NET. You can use next code for get y-intersection values: InitializeChart: Steema.TeeChart.Styles.Line Voltages; Steema.TeeChart.Tools.Cur...
by Sandra
Tue Mar 03, 2009 9:33 am
Forum: .NET
Topic: Area series not displaying after upgrading to v3.5.3330
Replies: 7
Views: 11680

Hi glitch, We can not reproduce your problem here using the following code: private void Form1_Load(object sender, EventArgs e) { Steema.TeeChart.Styles.Area area1 = new Steema.TeeChart.Styles.Area(tChart1.Chart); Steema.TeeChart.Styles.Area area2 = new Steema.TeeChart.Styles.Area(tChart1.Chart); St...
by Sandra
Mon Mar 02, 2009 9:38 am
Forum: .NET
Topic: Area series not displaying after upgrading to v3.5.3330
Replies: 7
Views: 11680

Hi glich, We can not reproduce your problem here. I recomended vistit next links,there seemed problem to your that is solved in current version of TeeChart .NET Update TeeChart.Net post http://www.teechart.net/support/viewtopic.php?t=9220 TeeChartNET3Release.txt : See number of bug report [TF0201384...
by Sandra
Fri Feb 27, 2009 12:42 pm
Forum: .NET
Topic: Teechart WPF - Axis Title Font not working properly
Replies: 3
Views: 7147

Hi Priya,

I could reproduce your problem, and I have added to the list of Bug Report with number [TW16013902] we will try to fix it for next versions of TeeChart .NET WPF.



Thanks,
by Sandra
Fri Feb 27, 2009 10:22 am
Forum: .NET
Topic: Drawing an arrow at the end of a line using Graphics3D
Replies: 5
Views: 9668

Hi Kevin, We suggest a similar code as next example, in AfterDraw event : private void tChart1_AfterDraw(object sender, Steema.TeeChart.Drawing.Graphics3D g) { Point p1 = new Point(tChart1.Chart.ChartRect.Left,tChart1.Chart.ChartRect.Top); Point p2 = new Point(tChart1.Chart.ChartRect.Right, tChart1....
by Sandra
Thu Feb 26, 2009 11:08 am
Forum: .NET
Topic: Preserve Transparency with PDF save
Replies: 1
Views: 4775

Hi asupriya, I could reproduce your problem and I have added to the list of Enhancement,we will try to fix it for next versions of TeeChart .NET. For now, a possible "solution" (is not a perfect solution), you can save your Chart with format jpg,gif,png etc. When you have image.xxx convert this with...
by Sandra
Thu Feb 26, 2009 10:34 am
Forum: .NET
Topic: Graphics3D Ellipse not transparent
Replies: 1
Views: 4721

Hi WD_Gordon, If you want ellipse don't fill you can use similar code for next in the event AfterDraw: g.Brush.Transparency = 100; g.Ellipse(100, 150, 150, 200 ); You needs call method g.Brush.Transparency before than g.Ellipse(..) because this call g.brush before draw ellipse. Thanks,
by Sandra
Thu Feb 26, 2009 10:14 am
Forum: .NET
Topic: Drawing an arrow at the end of a line using Graphics3D
Replies: 5
Views: 9668

Hi WD_Gordon, We doesn't understand exactly do you want. Please, could you send us a simple example project we can run "as-is" to reproduce the problem here? You can either post your files at news://www.steema.net/steema.public.attachments newsgroup or at our upload page. Or it tells you what you wa...
by Sandra
Wed Feb 25, 2009 12:34 pm
Forum: .NET
Topic: Chart Editor
Replies: 1
Views: 4467

Hi asupriya, How can display chart editor without having to display every tab in it. I mean, i simply want the user to control few aspects of it, such as 2D or 3D chart type, etc. and do not want to show everything For that chart editor restrict to display every tabs you could do a similar code for ...
by Sandra
Wed Feb 25, 2009 10:03 am
Forum: .NET
Topic: Circular Polar series chart
Replies: 1
Views: 4206

Hi asupriya,

If you want to PolarSeries appears prefectly circular you have do the next code:

Code: Select all

        PolarBar1.Circled = True

Please add this line in your code and you check if it works.


Thanks,
by Sandra
Wed Feb 25, 2009 9:13 am
Forum: .NET
Topic: Charts Legend question : Checkbox placement
Replies: 10
Views: 15530

Hi Neo, Is it mean the TeeChart v3 has the property to set ? Where can I found the property ? Yes, in the event AfterDraw appears:private void tChart1_AfterDraw(object sender, Steema.TeeChart.Drawing.Graphics3D g ). This is Graphics3D g that you use in your code ,and is not necessary to add the othe...
by Sandra
Tue Feb 24, 2009 10:47 am
Forum: .NET
Topic: Charts Legend question : Checkbox placement
Replies: 10
Views: 15530

Hi Neo, why to use the Graphics3D ? Well, I relaized that is not necessary the following part of code: Steema.TeeChart.Drawing.Graphics3D gr = tChart1.Graphics3D; I recommend you delete this, because the code will be more easy to understand and because the event already has the g parameter which can...
by Sandra
Mon Feb 23, 2009 10:42 am
Forum: .NET
Topic: AxisLabel of an Y-Value with SeriesHotspot - Tool
Replies: 2
Views: 6030

Hi Michael, If you want to get the Label-Text of The Gantts-LeftAxis, I recomended next code in the hotspotTool_GetHTMLMap event: void _Default_GetHTMLMap(Steema.TeeChart.Tools.SeriesHotspot sender, Steema.TeeChart.Tools.SeriesHotspotEventArgs e) { e.PointPolygon.Title = e.Series.YValues[e.PointPoly...
by Sandra
Mon Feb 23, 2009 9:48 am
Forum: .NET
Topic: Charts Legend question : Checkbox placement
Replies: 10
Views: 15530

Hi Neo, You could do a similar code as next exemple: Event AfterDraw private void tChart1_AfterDraw(object sender, Steema.TeeChart.Drawing.Graphics3D g) { System.Drawing.Rectangle legRect = this.tChart1.Legend.ShapeBounds; Steema.TeeChart.Drawing.Graphics3D gr = tChart1.Graphics3D; gr.HorizontalLine...