Search found 70 matches
- Tue Apr 17, 2012 5:54 am
- Forum: .NET
- Topic: LegendScrollbar is broken in newer versions
- Replies: 3
- Views: 8001
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 ...
- Mon Apr 02, 2012 6:48 am
- Forum: .NET
- Topic: LegendScrollbar is broken in newer versions
- Replies: 3
- Views: 8001
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 ...
- Tue Jun 14, 2011 2:20 pm
- Forum: .NET
- Topic: Use TeeChart 2008 with License of 2010
- Replies: 1
- Views: 4887
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...
- Tue Apr 26, 2011 5:37 am
- Forum: .NET
- Topic: DownSampling does not work
- Replies: 5
- Views: 10887
Re: DownSampling does not work
Hello Sandra,
thanks for the help. Now it works like expected
thanks for the help. Now it works like expected
- Wed Apr 20, 2011 12:41 pm
- Forum: .NET
- Topic: Increment issue.
- Replies: 5
- Views: 11725
Re: Increment issue.
This should also work
Code: Select all
this.tChart2.Axes.Left.Increment = 200
- Tue Apr 19, 2011 1:54 pm
- Forum: .NET
- Topic: DownSampling does not work
- Replies: 5
- Views: 10887
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...
- Mon Apr 18, 2011 10:12 am
- Forum: .NET
- Topic: DownSampling does not work
- Replies: 5
- Views: 10887
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...
- Mon Jun 14, 2010 7:18 am
- Forum: .NET
- Topic: Display issue when using UseOrigin property
- Replies: 6
- Views: 10570
Re: Display issue when using UseOrigin property
Hi Yeray,
what about something like this
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
}
- Mon Apr 12, 2010 5:25 am
- Forum: .NET
- Topic: show distinct bars of stacked bar chart
- Replies: 13
- Views: 24684
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);
- Fri Apr 09, 2010 2:55 pm
- Forum: .NET
- Topic: show distinct bars of stacked bar chart
- Replies: 13
- Views: 24684
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
- Fri Apr 09, 2010 11:15 am
- Forum: .NET
- Topic: show distinct bars of stacked bar chart
- Replies: 13
- Views: 24684
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.
for 0 values you can use the "SetNull" method. I use it to avoid 0 value artefacts like you told.
- Mon Jan 25, 2010 12:21 pm
- Forum: .NET
- Topic: Move series per drag&drop
- Replies: 5
- Views: 11559
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
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
- Fri Jan 22, 2010 1:18 pm
- Forum: .NET
- Topic: Move series per drag&drop
- Replies: 5
- Views: 11559
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...
- Thu Jan 21, 2010 4:19 pm
- Forum: .NET
- Topic: Move series per drag&drop
- Replies: 5
- Views: 11559
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...
- Mon Nov 30, 2009 3:11 pm
- Forum: .NET
- Topic: Zomming/Unzooming using Mouse Wheel
- Replies: 5
- Views: 11521
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