Search found 17 matches

by jarp
Mon Oct 26, 2009 2:03 pm
Forum: .NET
Topic: chart stops auto refreshing
Replies: 7
Views: 10416

Re: chart stops auto refreshing

I haven't known Chart.Invalidate can be called directly by thread. In such case performance is same for both approaches. if (!_this.autoRepaint) { //_this.ThreadChartInvoker(_this.tChart1, eTCI.e_TCI_Refresh, null); _this.tChart1.Invalidate(); } else _this.tChart1.Invalidate(); The question is if it...
by jarp
Mon Oct 26, 2009 9:37 am
Forum: .NET
Topic: chart stops auto refreshing
Replies: 7
Views: 10416

Re: chart stops auto refreshing

Hi Yeray, First of all thanks for your answer! What do you mean by "call invalidate routine after modifying the data"? Should I call it from thread? In such case I would have the same situation that I have in first approach. Calling "Invoke" from thread (and changing thread context) is what takes ti...
by jarp
Fri Oct 23, 2009 6:40 am
Forum: .NET
Topic: chart stops auto refreshing
Replies: 7
Views: 10416

Re: chart stops auto refreshing

Hi Yeray, I modified my code so thread is waiting for OnAfterDraw. It hasn't changed anything. Here comes executables: TChart3DAnimation exe.zip Because of file size restriction attached zip doesn't contain "TeeChart.dll". Please include it yourself. My version is "3.5.3425.20245" Application starts...
by jarp
Thu Oct 22, 2009 8:30 am
Forum: .NET
Topic: chart stops auto refreshing
Replies: 7
Views: 10416

chart stops auto refreshing

Hi, I have a chart with a Points3D series that contains 1000 points. I modify these points in separate thread as fast as possible (performance test application). I tested 2 approaches: 1. Set Chart.AutoRepaint=false and force chart to refresh itself from thread using InvokeRequired/Invoke technique....
by jarp
Mon Sep 07, 2009 6:13 am
Forum: .NET
Topic: problem additional frame on area chart
Replies: 2
Views: 3511

Re: problem additional frame on area chart

Yes, everything works fine.
by jarp
Thu Sep 03, 2009 1:42 pm
Forum: .NET
Topic: problem additional frame on area chart
Replies: 2
Views: 3511

problem additional frame on area chart

Hi, I have a problem with additional frame between two area charts. In the picture below: area.JPG are two series of Area type. Frames for both are set to Color.Yellow: area1.LinePen.Color = Color.Yellow; . How to remove the border (frame) between two charts (in the picture it is in red like color) ?
by jarp
Thu Sep 03, 2009 10:18 am
Forum: .NET
Topic: align chart to left
Replies: 1
Views: 2763

align chart to left

Hi, I have a problem with aligment chart to the left. In the picture below there are two control and each of one is build of two TeeChart charts: chart up and chart down (strips). charts-axes-align.JPG In the picture a) both charts have set axes.Left.visible = false but in the picture b) up chart ha...
by jarp
Tue Aug 04, 2009 6:52 am
Forum: .NET
Topic: State chart
Replies: 2
Views: 3421

Re: State chart

Thanks a lot. Your solution works.
by jarp
Mon Aug 03, 2009 8:20 am
Forum: .NET
Topic: State chart
Replies: 2
Views: 3421

State chart

Hi,

I would like to create chart with states. Now I've solved the problem by using line series like at the picture A),
but I would like to get something like at the picture B). Is there any series that give such a possiblity ?

[img]states.JPG[/img]
by jarp
Thu Jul 30, 2009 7:51 am
Forum: .NET
Topic: SilverLight: Large sets of data (50000 points)
Replies: 5
Views: 6285

Re: SilverLight: Large sets of data (50000 points)

Hello, Actually I need to draw Points series not the Line. I tried with downsampling tool but it doesn't seem to work. Steema.TeeChart.Silverlight.Styles.Points points = new Steema.TeeChart.Silverlight.Styles.Points(); points.Pointer.Style = Steema.TeeChart.Silverlight.Styles.PointerStyles.SmallDot;...
by jarp
Wed Jul 29, 2009 11:13 am
Forum: .NET
Topic: SilverLight: Large sets of data (50000 points)
Replies: 5
Views: 6285

SilverLight: Large sets of data (50000 points)

Hello, I need to draw tens of thousands points on TChart. I tried with 5000 and 50000 points. I attached sample project with TChart and GridSplitter. By moving the splitter I noticed very large delay which is not acceptable. Is there any way to draw such a large number of points in SilverLight ? Reg...
by jarp
Wed Jul 22, 2009 6:49 am
Forum: .NET
Topic: cursor does not work
Replies: 3
Views: 4381

Re: cursor does not work

Hi, I have TeeChart at version 3.5.3425.20244. The problem is that I would like to use this in ASP .Net application. In the code I listed I get static cursor in default position. The cursor is not followed by the mouse cursor in my ASP .NET application. I attached exactly the same code in the whole ...
by jarp
Tue Jul 21, 2009 11:29 am
Forum: .NET
Topic: cursor does not work
Replies: 3
Views: 4381

cursor does not work

I have only one control tChart1 on main page. In *.cs class I have such a code: Steema.TeeChart.Tools.CursorTool cursorTool1 = new Steema.TeeChart.Tools.CursorTool(tChart1.Chart); Steema.TeeChart.Styles.Line line1 = new Steema.TeeChart.Styles.Line(tChart1.Chart); line1.VertAxis = Steema.TeeChart.Sty...
by jarp
Mon Jun 08, 2009 5:45 am
Forum: .NET
Topic: Exporting plot to jpeg, from dynamically created TChart.
Replies: 2
Views: 3102

Hello,
Of course it's working...
Thanks.