Search found 167 matches: multiple custom

Searched query: multiple custom

by Sandra
Thu Dec 22, 2011 9:23 am
Forum: .NET
Topic: How to add auxiliary lines between vertical linesin teechart
Replies: 1
Views: 3467

Re: How to add auxiliary lines between vertical linesin teechart

... find some examples in All Features\Welcome !\Tools\Draw Lines 2.- Do custom Drawing where you draw lines in AfterDraw Event. How do I exactly ... axes and you can find examples in All Features\Welcome !\Axes\Scrolling multiple axes, All Features\Welcome !\Axes\Opaque zones and All Features\Welcome ...
by Arthur Dunn
Mon Dec 19, 2011 5:02 am
Forum: .NET
Topic: Performance of ImagePoint Series : TeeChart 2011
Replies: 3
Views: 4452

Performance of ImagePoint Series : TeeChart 2011

Hi, I'm trying to display custom images as pointers in TeeChart 2011. I'm able to achieve that using ImagePoint ... expectation is to have 25000 points on the chart in total (through both single and multiple series). I have even tried using the Points series for the same and by setting ...
by Sandra
Tue Aug 02, 2011 2:22 pm
Forum: .NET
Topic: Multiple DateTime Series
Replies: 3
Views: 3816

Re: Multiple DateTime Series

Hello cjherasmus,

I think that a good solution for you, would be using Custom labels. You can take a look in Demo project, to find some examples. Concretely I recommend take a look in: Welcome !\Axes\Labels.


Thanks,
by VarUser
Wed Jun 22, 2011 9:32 am
Forum: .NET
Topic: Series getting overlapped with another series on chart
Replies: 1
Views: 3520

Series getting overlapped with another series on chart

Hi We are displaying multiple series on chart and the series have custom axis. PFA herewith the snapshot of problem we are describing. The problem is that when you scroll the ...
by CKBN
Tue Apr 19, 2011 2:31 pm
Forum: .NET
Topic: Multiple custom y-axes and zooming
Replies: 6
Views: 7288

Re: Multiple custom y-axes and zooming

Hi Sandra,

Your a Sweetheart - thanks a million. This was exactly what I was looking for.
And sorry for the late reply - I just now saw that you had a solution for me.

Have a nice easter weekend.
Christian
by Sandra
Fri Apr 15, 2011 9:18 am
Forum: .NET
Topic: Multiple custom y-axes and zooming
Replies: 6
Views: 7288

Re: Multiple custom y-axes and zooming

Hello Christian, Seems the problem is that the rounding of axis labels. You can check this, adding milliseconds and changing label format as next lines of code: this.chartControl.HorizontalAxis.LabelFormat = "hh:mm:ss:fff"; Using it and doing zoom you will get next image: Example1.jpg If you calcula...
by CKBN
Wed Apr 13, 2011 11:19 pm
Forum: .NET
Topic: Multiple custom y-axes and zooming
Replies: 6
Views: 7288

Re: Multiple custom y-axes and zooming

... can be viewed by clicking the 'Show Data' button. We decided to use a custom x-axis, as this would enable us, at a later date, to introduce multiple x-axes without having to keep track on which was the bottom axis and which was the ...
by Sandra
Wed Apr 13, 2011 2:19 pm
Forum: .NET
Topic: Multiple custom y-axes and zooming
Replies: 6
Views: 7288

Re: Multiple custom y-axes and zooming

... spreading of the x-axis grid becomes nonlinear somehow: I am gratetful if you could you explain because if you only have one x-axis, you need a x-custom axis? I think is more easy use default bottom axis and I recommend it. On the other hand, I couldn't run your project,because this has lost: ...
by CKBN
Wed Apr 13, 2011 9:31 am
Forum: .NET
Topic: Multiple custom y-axes and zooming
Replies: 6
Views: 7288

Re: Multiple custom y-axes and zooming

... a minimum of our orginal software, we have made a wapper project. I’ll upload that. Please be aware that zooming for now only is done in the “Custom Zooming” region, ultimate by the private void CustomZoomInInternal(object sender, EventArgs e) method. Please let me know if you need anything ...
by Sandra
Wed Apr 13, 2011 8:02 am
Forum: .NET
Topic: Multiple custom y-axes and zooming
Replies: 6
Views: 7288

Re: Multiple custom y-axes and zooming

Hello Christian,

Could you try arrange a simple project a simple example project we can run as-is to reproduce exactly the problem here?


Thanks,
by CKBN
Tue Apr 12, 2011 12:57 pm
Forum: .NET
Topic: Multiple custom y-axes and zooming
Replies: 6
Views: 7288

Multiple custom y-axes and zooming

... to the .Net version, a couple of issues have arisen. As we often use multiple y-axes, we only use custom y-axes to be able to treat all in the same manner. Also we at all time only have one ...
by rossmc
Fri Feb 25, 2011 7:37 am
Forum: .NET
Topic: GetAxisLabel Event
Replies: 1
Views: 3343

GetAxisLabel Event

... event to do some basic modification of my labels. However, I have multiple series plotted on the chart. One on right axis, one on left axis, and then some additional custom axis. The question is, in the GetAxisLabel event, is there a way to tell which ...
by Sandra
Mon Jan 10, 2011 3:10 pm
Forum: .NET
Topic: Multiple lines from custom function?
Replies: 2
Views: 3067

Re: Multiple lines from custom function?

Hello dave, I am afraid that is not possible. The solution I propose to you, is that create a custom function that inherits of MACD function or ADX function. Once this is done you only has to overwrite methods Calculate and CalculateMany because works as you want. You ...
by dave
Thu Jan 06, 2011 2:42 pm
Forum: .NET
Topic: Multiple lines from custom function?
Replies: 2
Views: 3067

Re: Multiple lines from custom function?

Here is a quick second question for the topic of Custom functions using the "Calculate" event. Let's say the particular bar that is being processed by some trip through this event is an "invalid" day, like a holiday or something. If I want to return ...
by dave
Wed Jan 05, 2011 10:38 pm
Forum: .NET
Topic: Multiple lines from custom function?
Replies: 2
Views: 3067

Multiple lines from custom function?

It looks like we will be creating a number of custom financial functions. I have found one example that uses the inherited Calculate event and I have that working. I see that it returns a single value and that one value is easy to plot. What I want ...