Search found 38 matches
- Fri Dec 04, 2009 7:05 am
- Forum: .NET
- Topic: Webchart PictureFormat VML
- Replies: 1
- Views: 5521
Webchart PictureFormat VML
Hello. I have a Webchart in my ASP.NET Website to show some Charts. The Webcharts property "PictureFormat" is set to "PNG" at the moment. When I try to use VML as PictureFormat (for Internet Explorer only) it did not work. No chart is displayed. Are there any further properties that must be set to g...
- Mon Mar 23, 2009 3:50 pm
- Forum: .NET
- Topic: Installing TeeChart on a WebServer
- Replies: 2
- Views: 4960
- Mon Mar 23, 2009 3:06 pm
- Forum: .NET
- Topic: Installing TeeChart on a WebServer
- Replies: 2
- Views: 4960
Installing TeeChart on a WebServer
Hello, I'm trying to get TeeCharts Webchart work on a Webserver, but when I open the Webpage I get the following error-Message instead of the aspx-Page with my WebChart : "An instance of type 'Steema.TeeChart.Chart' was being created, and a valid license could not be granted for the type 'Steema.Tee...
- Wed Mar 11, 2009 1:44 pm
- Forum: .NET
- Topic: New Window with SeriesHotSpot-Tool
- Replies: 2
- Views: 6121
- Tue Mar 10, 2009 8:29 am
- Forum: .NET
- Topic: New Window with SeriesHotSpot-Tool
- Replies: 2
- Views: 6121
New Window with SeriesHotSpot-Tool
Hello, I'm using the TeeChart-Webchart in my current project with a SeriesHotspot-Tool. The MapAction property of the HotSpot-Tool is set to MapAction.URL, to open a PopupWindow by clicking a Series in my Webchart. In the tutorial I found an example where the Attributes-Property is set to "target='_...
- Mon Feb 23, 2009 12:20 pm
- Forum: .NET
- Topic: AxisLabel of an Y-Value with SeriesHotspot - Tool
- Replies: 2
- Views: 6544
- Mon Feb 23, 2009 8:52 am
- Forum: .NET
- Topic: AxisLabel of an Y-Value with SeriesHotspot - Tool
- Replies: 2
- Views: 6544
AxisLabel of an Y-Value with SeriesHotspot - Tool
Hello, I have different Gantt-Series drawn at different Y-Values in my Webchart. (Similar to the example in the "TeeChart for .NET Examples" (Welcome!\Chart styles\Standard\Gantt)) and I'm using a Series-Hotspot-Tool to show some Information on a Mouse-Over. My Question is: How can I get the Label-T...
- Fri Feb 06, 2009 12:32 pm
- Forum: .NET
- Topic: Percent-Values of Stacked100 with Series-Hotpot-Tools
- Replies: 1
- Views: 4480
Percent-Values of Stacked100 with Series-Hotpot-Tools
Hello,
how can I get a percent-value of a Stacked100-Bar on a Mouse-Over-Event with the Series-HotSpot-Tool?
When I do a Mouse-Over, I get the total-Value of the PointPolygon, but not the Percent-Value.
The HotSpot-Tools Style is:
Best regards
Michael
how can I get a percent-value of a Stacked100-Bar on a Mouse-Over-Event with the Series-HotSpot-Tool?
When I do a Mouse-Over, I get the total-Value of the PointPolygon, but not the Percent-Value.
The HotSpot-Tools Style is:
Code: Select all
myHotSpotTool.Style = MarksStyles.Percent;
Michael
- Thu Jan 22, 2009 2:29 pm
- Forum: .NET
- Topic: Pie-Series Marks
- Replies: 4
- Views: 6843
Hello Narcís, here is a code example: public partial class _Default : System.Web.UI.Page { Steema.TeeChart.Chart chart1; Steema.TeeChart.Styles.Pie pie1; protected void Page_Load(object sender, EventArgs e) { chart1 = WebChart1.Chart; chart1.Aspect.View3D = true; chart1.Legend.Visible = true; chart1...
- Thu Jan 22, 2009 1:08 pm
- Forum: .NET
- Topic: Pie-Series Marks
- Replies: 4
- Views: 6843
Pie-Series Marks
Hello,
when I set Pie-Series "Marks.Visible"-Property to true,
the Marks are not visible on every piece of the Pie-Series. Is this a bug of the Webchart (I'm using Version 3.5.3274.30663)?
Best regards
Michael
when I set Pie-Series "Marks.Visible"-Property to true,
the Marks are not visible on every piece of the Pie-Series. Is this a bug of the Webchart (I'm using Version 3.5.3274.30663)?
Best regards
Michael
- Tue Jan 20, 2009 10:13 am
- Forum: .NET
- Topic: Place a Shape on Webchart
- Replies: 1
- Views: 3835
Place a Shape on Webchart
Hello,
how is it possible to place a Shape on a Webchart?.
I'm using a triangle-Shape and I want to place it on a fixed Pixel-Position on my Webchart. And how can I increase or decraese the size of the shape-Series?
Best regards
Michael
how is it possible to place a Shape on a Webchart?.
I'm using a triangle-Shape and I want to place it on a fixed Pixel-Position on my Webchart. And how can I increase or decraese the size of the shape-Series?
Best regards
Michael
- Thu Jan 15, 2009 3:07 pm
- Forum: .NET
- Topic: Legend Symbols with Gantt-Series
- Replies: 2
- Views: 4851
- Thu Jan 15, 2009 2:44 pm
- Forum: .NET
- Topic: Legend Symbols with Gantt-Series
- Replies: 2
- Views: 4851
Legend Symbols with Gantt-Series
Hello, I have 6 Gantt-Series created. All Series are displayed correctly in WebChart, but in the Legend of the WebChart (Version 3.5.3274.30663) I can not see any Symbol - only the SeriesTitle of my Gantt-Series. The Legends Symbol.Visible-Property is set to TRUE. How can I show the Symbols (with th...
- Thu Jan 15, 2009 9:48 am
- Forum: .NET
- Topic: End-Date Value of a Gantt
- Replies: 2
- Views: 4931
- Thu Jan 15, 2009 8:35 am
- Forum: .NET
- Topic: End-Date Value of a Gantt
- Replies: 2
- Views: 4931
End-Date Value of a Gantt
Hello, I'm using the Webchart (3.5.3274.30663) with 7 gantt-Series. To add values to the gantt-Series I use the following code in a loop: condGanttBar[i].Add(startTime, endTime, LeftAxisValue, ganttColor[0]); With the SeriesHotspot-Tool I show some detailed information on a MouseOver Event (The Star...