Search found 14 matches
- Thu Aug 23, 2007 9:45 am
- Forum: .NET
- Topic: How to find custom axis series from click on background
- Replies: 1
- Views: 3675
How to find custom axis series from click on background
Hi, I have a WebChart with line series, each one on a custom axis. After clicking on the background, I need to know on which series I clicked. I can not use the ClickSeries event, since the click need not be exactly on the series line, but anywhere on the rectangular area on which the series appears...
- Wed Aug 15, 2007 12:05 pm
- Forum: .NET
- Topic: Problem in color of FastLine and Arrow series in V3
- Replies: 1
- Views: 3745
Problem in color of FastLine and Arrow series in V3
Hi, I have a WebChart with data that I want to represent in a FastLine (or Line) series and in an Arrow series I want both series to be the same color, But FastLine (or Line) and Arrow series with the same value for the Color property are displayed in different colors in the webchart (In the legend ...
- Tue Aug 07, 2007 11:35 am
- Forum: .NET
- Topic: Drawing on a WebChart with custom axes
- Replies: 4
- Views: 6229
- Mon Aug 06, 2007 4:08 pm
- Forum: .NET
- Topic: Drawing on a WebChart with custom axes
- Replies: 4
- Views: 6229
- Mon Aug 06, 2007 3:19 pm
- Forum: .NET
- Topic: WebChart background color on ver 3
- Replies: 2
- Views: 4504
- Mon Aug 06, 2007 3:18 pm
- Forum: .NET
- Topic: Adding a Vertical ScrollToll to a WebChart
- Replies: 1
- Views: 3529
Adding a Vertical ScrollToll to a WebChart
Hi, I have a WebChart with line series, each one on a custom axis. I do not want to show more that 6 series at a time, and I might have as many as 20. I want to add a Vertical scrolltool on the left axis. If this is possible, could you please supply a code example, which will show what properties sh...
- Mon Aug 06, 2007 10:04 am
- Forum: .NET
- Topic: WebChart background color on ver 3
- Replies: 2
- Views: 4504
WebChart background color on ver 3
Hi, Since we upgraded to .net ver 3 there is a problem in display of the background color of a webchart line graph. The color we set for the graph applies only to the outer part of the chart display, and all the inner part where the series are drawn, stays gray, no matter what we do. Here is the cod...
- Mon Aug 06, 2007 8:59 am
- Forum: .NET
- Topic: Drawing on a WebChart with custom axes
- Replies: 4
- Views: 6229
Drawing on a WebChart with custom axes
Hi, I have WebChart with 6 series each one on a custom axis 1. For every axis I want to draw it's zero line that should start from the left (left axis of the graph) and go to the right (right axis of the graph) 2. For every axis I want to show on the right (right axis of the graph) the minimum and m...
- Tue Jul 31, 2007 9:42 am
- Forum: .NET
- Topic: Zoom in on a WebChart using ZoomPercent
- Replies: 10
- Views: 13705
Hi Narcis I cannot post my files at news://www.steema.net/steema.public.attachments and upload page does not work for me either. I attach here a full cs file of a working example that demonstrates the crash. If this is not sufficient, please supply me with an e-mail address so that I'll send you the...
- Mon Jul 30, 2007 2:40 pm
- Forum: .NET
- Topic: Zoom in on a WebChart using ZoomPercent
- Replies: 10
- Views: 13705
Hi Narcís, I installed the new version, and I tried making the call both with and without arguments: System.Drawing.Bitmap bmp = webChart.Chart.Bitmap(); System.Drawing.Bitmap bmp = webChart.Chart.Bitmap((int)webChart.Width.Value, (int)webChart.Height.Value); either way gives the exception: System.A...
- Thu Jul 26, 2007 3:31 pm
- Forum: .NET
- Topic: Zoom in on a WebChart using ZoomPercent
- Replies: 10
- Views: 13705
Hi Narcis, I installed TeeChart version 3 and the code for zoom in stopped working. On the code line System.Drawing.Bitmap bmp = webChart.Chart.Bitmap((int)webChart.Width.Value, (int)webChart.Height.Value); I get the following exception: System.ArgumentException: Parameter is not valid This was the ...
- Wed Jun 27, 2007 9:45 am
- Forum: .NET
- Topic: Adding Scrollbar to a WebChart
- Replies: 1
- Views: 4864
Adding Scrollbar to a WebChart
Hi, I have WebChart with 6 series each one on a custom axis I need to supply the following functionality: 1. A vertical scrollbar, so that the graph will display 3 series at a time I added a scrollbar tool code to the chart but it did not show. //Add a ScrollBar to the Chart ScrollBar scrollBar = ne...
- Thu Jun 07, 2007 3:18 pm
- Forum: .NET
- Topic: Zoom in on a WebChart using ZoomPercent
- Replies: 10
- Views: 13705
Thank you Narcís, Now I need more help with the zoom. When I use the zoom tool to select a rectangle on the chart that does not contain any part of the graph (zoom in on an empty space on the chart) I get an empty chart. What I want is that zooming on an empty part of the chart would be ignored and ...
- Mon Jun 04, 2007 1:29 pm
- Forum: .NET
- Topic: Zoom in on a WebChart using ZoomPercent
- Replies: 10
- Views: 13705
Zoom in on a WebChart using ZoomPercent
Hi, I need to supply zoom functionality on my WebChart. I used you sample code to add a zoom tool that would let me select a rectangle on the chart and zoom on it, which worked fine. But I also need to zoom in/zoom out on the chart using WebChart1.Chart.Zoom.ZoomPercent(percent); I used your sample ...