Search found 1603 matches

by Christopher
Wed Apr 22, 2015 9:42 am
Forum: .NET
Topic: Graph functions not available in Teechart .Net version
Replies: 5
Views: 9677

Re: Graph functions not available in Teechart .Net version

Hello!

Following the instructions on how to post to this forum which you can read here, would you be so kind as to follow point 3) and add this as a feature request for TeeChart .NET?
by Christopher
Tue Apr 21, 2015 3:38 pm
Forum: .NET
Topic: TeeChart35 .Net Project Issue
Replies: 3
Views: 6977

Re: TeeChart35 .Net Project Issue

Hello, As you have the source code version, you can change the MinimalDifference() method of Utils.cs to the following: public static bool MinimalDifference(double value1, double value2, int units) { long lValue1 = BitConverter.DoubleToInt64Bits(value1); long lValue2 = BitConverter.DoubleToInt64Bits...
by Christopher
Tue Apr 21, 2015 9:02 am
Forum: .NET
Topic: Unzoom
Replies: 5
Views: 8558

Re: Unzoom

I'm trying to unzoom programmatically using Chart.Zoom.Undo(); but it won't work. I also tried using the ZoomTool which is added to the chart but none of my approaches led to the desired result, Using the same TeeChart.dll and the following code: Line series1; private void InitializeChart() { tChar...
by Christopher
Tue Apr 21, 2015 8:48 am
Forum: .NET
Topic: TeeChart35 .Net Project Issue
Replies: 3
Views: 6977

Re: TeeChart35 .Net Project Issue

Quant,

Do please bear in mind our suggestions for how to post to this forum, which you can read here. Would you please be so kind as to follow point 2), that is, to create a simple example project with which we can reproduce the issue here?
by Christopher
Tue Apr 21, 2015 8:37 am
Forum: .NET
Topic: Blank space issue for Candle Sticks Graph
Replies: 16
Views: 27112

Re: Blank space issue for Candle Sticks Graph

We have downloaded the latest release of .Net TeeChart, but we haven't found the resolution for this Blank Space Issue. Please let us know where we can find the same. In the latest release notes we have: 1147.PNG This property can be used like this: Candle series1; private void InitializeChart() { ...
by Christopher
Wed Apr 15, 2015 9:38 am
Forum: .NET
Topic: Convert Steema.TeeChart.Export.BitmapFormat to System.Drawi
Replies: 1
Views: 4341

Re: Convert Steema.TeeChart.Export.BitmapFormat to System.Drawi

Hello!

It's probably easier to try something like this:

Code: Select all

Image image = tChart1.Bitmap;
by Christopher
Mon Apr 13, 2015 9:31 am
Forum: .NET
Topic: Teechart editor checkbox event.
Replies: 1
Views: 4476

Re: Teechart editor checkbox event.

Hello! One way of approaching this issue would be the following: private void InitializeChart() { tChart1.Series.Add(typeof(Line)).FillSampleValues(); tChart1.Series.Add(typeof(Line)).FillSampleValues(); tChart1.Chart.Listeners.Add(new ChangeEvent(tChart1.Chart)); } public class ChangeEvent : ITeeEv...
by Christopher
Thu Apr 09, 2015 10:04 am
Forum: .NET
Topic: mark doesn't display when value is 0
Replies: 1
Views: 3914

Re: mark doesn't display when value is 0

Run the exe and when the app appears, press "Push Me". You will see a chart with 4 bars with values of 0 through 3, but notice the 0 value is not visible - this is the problem. Yes, please set the SoftClip to false, e.g. var series = new HorizBar {BarStyle = BarStyles.Rectangle, Marks = {Style = Ma...
by Christopher
Thu Apr 09, 2015 9:43 am
Forum: .NET
Topic: Annotation tool snap to point feature
Replies: 1
Views: 4207

Re: Annotation tool snap to point feature

Hello! You can tie the Annotation tool position to a particular series point position like this: Annotation tool1; Line series1; private void InitializeChart() { series1 = new Line(tChart1.Chart); series1.FillSampleValues(); series1.AfterDrawValues += series1_AfterDrawValues; tool1 = new Annotation(...
by Christopher
Wed Apr 08, 2015 8:38 am
Forum: .NET
Topic: Customize chart controller
Replies: 1
Views: 4443

Re: Customize chart controller

Paola wrote:Is it possible to customize it?
Yes, it is ... there's an example of how to do so here.
by Christopher
Wed Apr 08, 2015 8:25 am
Forum: .NET
Topic: DateTime and DbNull Values
Replies: 3
Views: 7561

Re: DateTime and DbNull Values

Yes, this works as expected in the latest publicly available version of TeeChart for .NET. Running the code Tommie posted gives this chart:
dbnulls.png
dbnulls.png (38.51 KiB) Viewed 7255 times
by Christopher
Wed Apr 08, 2015 8:03 am
Forum: .NET
Topic: To show marks of line series on the top.
Replies: 3
Views: 7348

Re: To show marks of line series on the top.

You're welcome.

Could you please post a simple example project (explanation here) with which I can reproduce the issue here?
by Christopher
Tue Apr 07, 2015 2:13 pm
Forum: .NET
Topic: To show marks of line series on the top.
Replies: 3
Views: 7348

Re: To show marks of line series on the top.

Hello, I'm afraid I'm going to need a little more information to help you. Are you using the Contour series? If so, then you should look at the example in the Feature demo under: %Program Files%\Steema Software\Steema TeeChart for .NET 2015 4.1.2015.03110\Examples\DemoProject\bin\ExecutableDemo\TeeC...
by Christopher
Tue Mar 31, 2015 1:12 pm
Forum: .NET
Topic: Synchronizing Cursor Behaviour
Replies: 11
Views: 17508

Re: Synchronizing Cursor Behaviour

Quant wrote: As per our requirements we must achieve this. It is unacceptable to our users. What do you say about using multithreading?
I'm afraid GDI+ does not support multithreading, we had a long look into this issue a few years ago.
by Christopher
Tue Mar 31, 2015 9:32 am
Forum: .NET
Topic: Synchronizing Cursor Behaviour
Replies: 11
Views: 17508

Re: Synchronizing Cursor Behaviour

What are the alternative method to do the above things without any lag? I have already tried to explain to you that no lag in these circumstances is impossible. As I said, "The issue here is that the .NET Framework does not paint the two charts simultaneously, it paints them one after the other, an...