Search found 14 matches

by Frances
Wed Dec 05, 2007 7:28 am
Forum: .NET
Topic: Adding points from another thread
Replies: 20
Views: 22952

Hi Narcís,

Runtime version: v2.0.50727
Version: 3.2.2868.26903
by Frances
Tue Dec 04, 2007 2:29 pm
Forum: .NET
Topic: Adding points from another thread
Replies: 20
Views: 22952

Hi Narcís, thanks for the quick reply, but unfortunately your example code doesn't work for me. When I use this code: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Thre...
by Frances
Tue Dec 04, 2007 12:25 pm
Forum: .NET
Topic: Adding points from another thread
Replies: 20
Views: 22952

Adding points from another thread

Hi all, I have a problem with my application. In it, I add points to my chart from another thread. This doesn't cause a problem in itself, only that the chart doesn't repaint itself automatically. You can only see the added points when you resize the window, or when you move the focus from the windo...
by Frances
Tue Oct 23, 2007 1:26 pm
Forum: .NET
Topic: HorizLine and DownSampling
Replies: 6
Views: 7704

Hi Narcís,

Thanks :) It used to work in version 1.
by Frances
Tue Oct 23, 2007 11:03 am
Forum: .NET
Topic: HorizLine and DownSampling
Replies: 6
Views: 7704

A small project that illustrates my problem, is uploaded to the server with the name: TestTeeChartV3.zip
by Frances
Mon Oct 22, 2007 12:43 pm
Forum: .NET
Topic: HorizLine and DownSampling
Replies: 6
Views: 7704

HorizLine and DownSampling

Hi all,

There's something bothering me about v3. Say I have a chart with a Horizontal Line, so it goes from top to bottom. Now I add a DownSampling method to that Line, and it suddenly goes from left to right! Not exactly what I want... Anyone know how to fix it?

Cheers,
Frances
by Frances
Wed Nov 15, 2006 7:12 am
Forum: .NET
Topic: Print several pages
Replies: 4
Views: 6157

Hi Narcís,

I'll keep waiting then :) Thanks for your reply.

Cheers,
Bala
by Frances
Tue Nov 14, 2006 1:32 pm
Forum: .NET
Topic: Print several pages
Replies: 4
Views: 6157

Hi Narcís, thanks for your answer :) I just have one other question: If I want to save my chart-pages in a PDF-document, and I use the method described by you, I end up with as much PDF-documents as there are pages in my chart. for (int i = 1; i <= tChart1.Page.Count; i++) { tChart1.Page.Current = i...
by Frances
Mon Oct 23, 2006 1:39 pm
Forum: .NET
Topic: Print several pages
Replies: 4
Views: 6157

Print several pages

Hi all,

I have a chart wcich spans several pages. Now I want to print this chart, and put each chart-page on a separate paper-page (if you catch my drift :)). Any ideas on how I could accomplish this? All I can find is how to put several charts on one page
by Frances
Wed Apr 20, 2005 12:05 pm
Forum: .NET
Topic: Graph plotted on Header
Replies: 2
Views: 5432

Chart plotted on header - Solved

Hi
The below property is set to false which caused the graph to be plotted on header and on footer. Don't know how i endded up with the code below but it costed me a lot of time to figure this out.

.Aspect.ClipPoints = false;

Cheers,
Bala
by Frances
Thu Apr 07, 2005 10:25 am
Forum: .NET
Topic: MinYValue & MaxYValue not updated even after recalculate
Replies: 3
Views: 6041

Hi, You are assigning the smooth curve on Line1 and clearing line1. Then you are adding points on line1. THAT WORKS. What i did is: Assign Line1 to Line2. HorizLineSmooth.Datasource = HorizLine Clear HorizLine1. Clear HorizLineSmooth. Now the MinMax for HorizLineSmooth returns the old min max value ...
by Frances
Tue Apr 05, 2005 3:57 pm
Forum: .NET
Topic: Graph plotted on Header
Replies: 2
Views: 5432

Graph plotted on Header

Hi,
Can you please tell me why my graph is plotted on the Header & and also on Footer.

I have one chart graph that does and the other that does not. I set the MinMax for both graphs manually and they both have same Y values & same Y-MinMax

Thanks.
by Frances
Tue Apr 05, 2005 8:02 am
Forum: .NET
Topic: PDF Creation from TChart.NET
Replies: 1
Views: 4678

PDF Creation from TChart.NET

Hi, I would like to create a PDF plot from TChart.NET. I have multiple charts plotted in one chart on TChart.Printer.Print (new Rectangle ...) It plots nicely and quickly which i can see in PreView. However, when i use a PDF Printer (Whatever is available in the market, doesn't matter about the priz...
by Frances
Tue Apr 05, 2005 7:45 am
Forum: .NET
Topic: MinYValue & MaxYValue not updated even after recalculate
Replies: 3
Views: 6041

MinYValue & MaxYValue not updated even after recalculate

Hi, I have two series of horizontalLines added HorizLine and HorizLineSmooth. HorizLineSmooth.Function = DownSampling HorizLineSmooth.Datasource = HorizLine After adding points to HorizLine i do a recalculate and i get a nice HorizLineSmooth. I get MinYValue on HorizLineSmooth which returns the mini...