Search found 35 matches
- Mon Feb 14, 2005 12:41 pm
- Forum: .NET
- Topic: Multiple legends
- Replies: 1
- Views: 5241
Multiple legends
Hi, I would like to add multiple legends to my chart, as demonstrated in one of your demo's. In my application I add series as follows: for (iSeries=0;iSeries<noSeries;iSeries++) { for (i=0;i<noPnts;i++) tChart1.Series[iSeries].Add(x ,y ); } Now I would like to split up those series over more than o...
- Fri Feb 11, 2005 9:13 am
- Forum: .NET
- Topic: Are .NET fonts and TeeChart fonts incompatible ?
- Replies: 1
- Views: 5002
Are .NET fonts and TeeChart fonts incompatible ?
Hi, In my application I have my own .NET font dialog, and I want to apply the user-selected font for my axis titles. (kinda shortcut for TeeChart editor). But I get an error message : cannot convert System.Drawing.Font to Steema.TeeChart.Drawing.ChartFont ??? My code looks like: Steema.TeeChart.Axis...
- Tue Feb 08, 2005 11:50 am
- Forum: .NET
- Topic: Adding labels to series
- Replies: 1
- Views: 5061
Adding labels to series
Hi, The problem with a legend is that it occupies a lot of space on the chart. I would like to add some label string to each series, which will be displayed somewhere along the line. I tried something like: line = new Steema.TeeChart.Styles.Line(); line.Add(" series name"); but that did not work out...
- Tue Feb 08, 2005 11:45 am
- Forum: .NET
- Topic: How to remove axes and legends from chart
- Replies: 4
- Views: 9660
Hi, Thanks for your reply. But if I want to redraw my chart with a different legend (more items in it) and different axes (different length, grids, labels, etc. ), I first need to remove them from the chart, and then add the newly generated axes and legend to my chart. That was my idea .... Kind reg...
- Tue Feb 08, 2005 8:00 am
- Forum: .NET
- Topic: How to remove axes and legends from chart
- Replies: 4
- Views: 9660
How to remove axes and legends from chart
Hi, Of course I know how to add axes and legend to my chart, but how to remove ..... In my code I add a bottom axis by: bottom = tChart1.Axes.Bottom; bottom.Chart = tChart1.Chart; but how to remove ? For my legend I apply code like: tChart1.Legend.TopLeftPos = 5; but how to remove this legend ? Than...
- Tue Feb 01, 2005 5:55 pm
- Forum: .NET
- Topic: How to control the legend size ??
- Replies: 1
- Views: 5203
How to control the legend size ??
Hi, I am trying to get some control over the size of the legend. First I try to set the maximum number of lines to 20 by means of: tChart1.Legend.MaxNumRows = 20; but in case of 50 series the legend keeps growing vertically till it reaches the bottom. I want to set the max. number of lines for my le...
- Mon Jan 31, 2005 10:35 am
- Forum: .NET
- Topic: Mouse hover event
- Replies: 1
- Views: 5421
- Mon Jan 31, 2005 8:38 am
- Forum: .NET
- Topic: Customizing Series
- Replies: 5
- Views: 9921
Hi, Thanks for your hints, but I think I am missing some details. If I change my series from tChart1.Series into Steema.TeeChart.Styles.CustomPoint series; then I see a method GetPointerStyle(). Do I have to add an event, like series.GetPointerStyle += new <event handler> <line1_GetPointerStyle). Is...
- Fri Jan 28, 2005 2:21 pm
- Forum: .NET
- Topic: Mouse hover event
- Replies: 1
- Views: 5421
Mouse hover event
Hi, As soon as the user hovers over the axes I want to display some information (call out) to inform the user how to customize the axis scaling. For this purpose I use the Mouse Hover event of TeeChart, and in the call back function I check if the event was sent from one of the axes. My axes are ava...
- Fri Jan 28, 2005 2:09 pm
- Forum: .NET
- Topic: Clickable axes
- Replies: 1
- Views: 4757
Clickable axes
Hi, I am working with clickable axes, and check on the number of mouse clicks, but the events always returns with 1 mouse click. The code looks like: private void tChart1_ClickAxis(object sender, System.Windows.Forms.MouseEventArgs e) { int noClicks = e.Clicks; <-- always returns 1 mouse click ?? An...
- Thu Jan 27, 2005 11:31 am
- Forum: .NET
- Topic: Smooth lines
- Replies: 7
- Views: 14553
Hi, Yes, I walked thru that example many times, and copied some code from it, but I don't get the smooth spline even after 2 days working .... I must say, I (and my boss) will be VERY PLEASED if you could send me a complete Visual Studio .NET solution (so a *.sln file) with all the files included fo...
- Wed Jan 26, 2005 9:39 am
- Forum: .NET
- Topic: Status of open questions
- Replies: 1
- Views: 4823
Status of open questions
Hi, I am really satisfied with the quick replies from Steema, but I am still waiting on the response on some open questions. So, the questions about "Date time axis", "Smooth interpolation", etc. Does this mean you are still working on a solution, or something else .. ? What I am missing is a kind o...
- Tue Jan 25, 2005 11:38 am
- Forum: .NET
- Topic: Customizing Series
- Replies: 5
- Views: 9921
Hi, Thanks for your quick reply. I just tried your second example, and tried to hide drawing the lines, by means of line1.Brush.Visible = false; line1.LinePen.Visible = false; but TeeChart still draws the lines in between the data points. Strange .. The complete code looks like this: Steema.TeeChart...
- Tue Jan 25, 2005 9:43 am
- Forum: .NET
- Topic: Customizing Series
- Replies: 5
- Views: 9921
Customizing Series
Hi, Two questions about customizing series: 1) is it possible that not each data point on my series shows up with a pointer, but let's say each 10th data point; the problem is that I have large series of length of 400, so I only see the pointers and no line; is there some increment for pointers ?? 2...
- Mon Jan 17, 2005 11:44 am
- Forum: .NET
- Topic: Date time axis
- Replies: 3
- Views: 7524
Hi, Strange, but the format "yyyy-MM-dd hh:mm:ss" displays the month in the date-time format correctly. First I had "1900-00-09 12:00:00", now "1900-01-09 12:00:00" But there is still another problem ... Printing the xValues[iTime].toString() results in: Date-time : 09/01/1900 00:00:00 Date-time : 0...