Search found 10 matches

by Hexalog
Mon Apr 07, 2008 11:37 am
Forum: .NET
Topic: TeeChart for .NET [04 APR 2008] RELEASE 3.2.3016.15520/1/2
Replies: 2
Views: 6636

Please also update evaluation version so that we can measure the progress done and eventually purchase :roll:

Thanks.
by Hexalog
Fri Apr 04, 2008 3:48 pm
Forum: .NET
Topic: BUG: MapRegion.GetMap with circle area and scrolling
Replies: 5
Views: 8202

Oh well :? ! I made a quick and dirty sample project. To see the problem, open the source code of the HTML page generated and look at area's coords attribute. Circle radius is negative instead of the one we set (expected value mentionned in the annotation). Filename of the uploaded file is: BrokenCi...
by Hexalog
Fri Apr 04, 2008 7:12 am
Forum: .NET
Topic: BUG: MapRegion.GetMap with circle area and scrolling
Replies: 5
Views: 8202

Sorry no sample project available. However this is fairly easy to understand without. The error exhibits in ASP project when scrolling is active and map contains circle polygone shapes. In this case the circle radius of the polygone shape is decrement as well which is of course wrong hence the fix I...
by Hexalog
Wed Apr 02, 2008 12:49 pm
Forum: .NET
Topic: BUG: MapRegion.GetMap with circle area and scrolling
Replies: 5
Views: 8202

BUG: MapRegion.GetMap with circle area and scrolling

Looking at 3.2.2897.29193 dissasembly, I believe the code could be modified as follow (see comment): ... if (scrolling && ((i < 2) || (polygon.PointStyle != PolygonStyle.Circle)) // The correction ) { if ((i == 0) || ((i % 2) == 0)) { polygon.Coordinates[i] -= bounds.Left; } else { polygon.Coordinat...
by Hexalog
Mon Mar 31, 2008 12:36 pm
Forum: .NET
Topic: What property to suppress frame surrounding chart
Replies: 4
Views: 8414

Amazing this trick works 8)

Thanks so much !
by Hexalog
Fri Mar 28, 2008 1:11 pm
Forum: .NET
Topic: What property to suppress frame surrounding chart
Replies: 4
Views: 8414

What property to suppress frame surrounding chart

Using default chart theme a frame is shown around the WebChart. I am already setting those properties but that mysterious frame remains visible: aChart.Chart.Aspect.View3D = false; aChart.Chart.Panel.Bevel.Inner = BevelStyles.None; aChart.Chart.Panel.Bevel.Outer = BevelStyles.None; aChart.Chart.Pane...
by Hexalog
Tue Mar 18, 2008 1:59 pm
Forum: .NET
Topic: BUG: WebPage rendering never ends after Labels.Style change
Replies: 7
Views: 8696

Please, use a ScrollBarTool to add a scroll bar to the chart (not the legend) in an ASP.net project.

Thanks.
by Hexalog
Tue Mar 18, 2008 9:45 am
Forum: .NET
Topic: BUG: WebPage rendering never ends after Labels.Style change
Replies: 7
Views: 8696

That's good news. Thanks. We actually tried this version after finding out that custom axis disappears in evaluation version 3.2.2894.29193 as soon as adding the ScrollBar tool. Since, we could not test with the latest official evaluation version since it somewhat broken and release notes refer to s...
by Hexalog
Tue Mar 18, 2008 7:23 am
Forum: .NET
Topic: BUG: WebPage rendering never ends after Labels.Style change
Replies: 7
Views: 8696

Just, sent a sample project. Uncomment the last line in Default.aspx.cs and it should then reproduce the problem we observed.

BR,
by Hexalog
Mon Mar 17, 2008 3:39 pm
Forum: .NET
Topic: BUG: WebPage rendering never ends after Labels.Style change
Replies: 7
Views: 8696

BUG: WebPage rendering never ends after Labels.Style change

Doing evaluation of v3.2.2980.19085

We found out that assigning AxisLabelStyle.Text prevents the web page to be ever rendered.

Code: Select all

webChart.Chart.Axes.Left.Labels.Style = AxisLabelStyle.Text;
Note: Tested using Httphandler as image generator[/code]