Search found 70 matches

by AIS
Tue Apr 17, 2012 5:54 am
Forum: .NET
Topic: LegendScrollbar is broken in newer versions
Replies: 3
Views: 6851

Re: LegendScrollbar is broken in newer versions

Hello Sandra, sorry for my late delay, now i can give you an answer to your question. No, your code does not work. Setting a fixed width but don't know how much space the labels realy require is not a good solution. In my real world progam i have 1 to 100 possible legend entries each with different ...
by AIS
Mon Apr 02, 2012 6:48 am
Forum: .NET
Topic: LegendScrollbar is broken in newer versions
Replies: 3
Views: 6851

LegendScrollbar is broken in newer versions

Hello, till last week we used TeeChart 3.5 (3.5.3105.20151) for over 4 years now but finally we upgraded to version 4.1 (4.1.2011.6283). In one of my first tests i found an issue with the LegendScrollBar tool. The size of the legend does not fit anymore and i have not found a usefull way to fix the ...
by AIS
Tue Jun 14, 2011 2:20 pm
Forum: .NET
Topic: Use TeeChart 2008 with License of 2010
Replies: 1
Views: 4342

Use TeeChart 2008 with License of 2010

Hello, is it possible to work with TeeChart 2008 (3.5.3105.20151) and use a license of the current release? We have a plugin based module which uses the old version of TeeChart. Now a customer wants to create a plugin with TeeChart for our module, but he should have its own license. Is this possbile...
by AIS
Tue Apr 26, 2011 5:37 am
Forum: .NET
Topic: DownSampling does not work
Replies: 5
Views: 9425

Re: DownSampling does not work

Hello Sandra,

thanks for the help. Now it works like expected :)
by AIS
Wed Apr 20, 2011 12:41 pm
Forum: .NET
Topic: Increment issue.
Replies: 5
Views: 9984

Re: Increment issue.

This should also work ;)

Code: Select all

this.tChart2.Axes.Left.Increment = 200
by AIS
Tue Apr 19, 2011 1:54 pm
Forum: .NET
Topic: DownSampling does not work
Replies: 5
Views: 9425

Re: DownSampling does not work

Hello Sandra, yes, this works but it is not clear for me why it does. I mean, it should also not work within the load event,but why it works also without any changes? By the way the downsampling is only usefull if you choose a fastline series with DrawAllPoints=False otherwise the drawing of the sec...
by AIS
Mon Apr 18, 2011 10:12 am
Forum: .NET
Topic: DownSampling does not work
Replies: 5
Views: 9425

DownSampling does not work

Hello, i have tried to test the downsampling functionality within a simple silverlight project. During implementation i recognized a strange behaviour for this function. This behaviour occures with the winforms and also with the silverlight assembly. I try to explain this with a simple winforms exam...
by AIS
Mon Jun 14, 2010 7:18 am
Forum: .NET
Topic: Display issue when using UseOrigin property
Replies: 6
Views: 9002

Re: Display issue when using UseOrigin property

Hi Yeray,

what about something like this

Code: Select all

enum OriginValues
{
/// <summary>
/// before: UseOrigin = true
/// </summary>
Zero,
/// <summary>
/// default value
/// before: UseOrigin = false
/// </summary>
NegativeInfinite,
/// <summary>
/// new value
/// </summary>
PositiveInfinite
}
by AIS
Mon Apr 12, 2010 5:25 am
Forum: .NET
Topic: show distinct bars of stacked bar chart
Replies: 13
Views: 17949

Re: show distinct bars of stacked bar chart

for example like this:

Code: Select all

CustomBar cb = new CustomBar(tChart1.Chart);
cb.Add(0, 1);
cb.Add(1, 2);
cb.Add(2, 0);
cb.Add(3, 4);
cb.SetNull(2);
by AIS
Fri Apr 09, 2010 2:55 pm
Forum: .NET
Topic: show distinct bars of stacked bar chart
Replies: 13
Views: 17949

Re: show distinct bars of stacked bar chart

I don`t know how the datatable tool visualize the case if you first add a 0 value and then call SetNull for this point. Anyway, the bar is not shown as a small line :)
by AIS
Fri Apr 09, 2010 11:15 am
Forum: .NET
Topic: show distinct bars of stacked bar chart
Replies: 13
Views: 17949

Re: show distinct bars of stacked bar chart

Hi,

for 0 values you can use the "SetNull" method. I use it to avoid 0 value artefacts like you told.
by AIS
Mon Jan 25, 2010 12:21 pm
Forum: .NET
Topic: Move series per drag&drop
Replies: 5
Views: 10008

Re: Move series per drag&drop

Hello Sandra,

i could not update to v4 yet, because a lot of testing must be done after that to ensure the same functionality. Thanks anyway, i will try it next time ;)
by AIS
Fri Jan 22, 2010 1:18 pm
Forum: .NET
Topic: Move series per drag&drop
Replies: 5
Views: 10008

Re: Move series per drag&drop

Hello Narcís, i dont use v4 of TChart, i use v3.5 and i try the postet solution of the linked thread. The region which is automatic redrawn (only the annotation) through invalidate, causes also a high delay of the cursorttool (fastcursor true/false), that doesn't look good. I think this can not be a...
by AIS
Thu Jan 21, 2010 4:19 pm
Forum: .NET
Topic: Move series per drag&drop
Replies: 5
Views: 10008

Move series per drag&drop

Hello, i have a chart with some fastline series and a lot of data in some cases (>10.000 each series). Now i want to give the user the opportunity to move a series with the mouse in the chart per drag&drop. During the move, the series should follow the mouse and at the end the original series, x and...
by AIS
Mon Nov 30, 2009 3:11 pm
Forum: .NET
Topic: Zomming/Unzooming using Mouse Wheel
Replies: 5
Views: 10112

Re: Zomming/Unzooming using Mouse Wheel

For a correct zoom in and zoom out calculation step wise there is a good explanation from narcis within this thread