Not at the moment I'm afraid, no - I've added this request to our issue tracker with id=2412, meaning an implementation of it will become available shortly.
Search found 1336 matches
- Mon Apr 19, 2021 7:32 am
- Forum: .NET
- Topic: WPF ColorGrid DataBinding
- Replies: 1
- Views: 38
Re: WPF ColorGrid DataBinding
Hello,
- Tue Mar 30, 2021 2:55 pm
- Forum: .NET
- Topic: Trying to Add a Top Axis
- Replies: 2
- Views: 283
Re: Trying to Add a Top Axis
Hello Dave, yes, possibly the easiest way to do this is to use Series labels, e.g. private void InitializeTChart(TChart chart) { var plot = new Line { Title = "My Plot" }; var xAxis = new List<float>(5) { 9.3f, 10.3f, 11.3f, 12.3f, 13.3f }; var yAxis = new List<float>(5) { 44, 19, 67, 87, 9 }; plot....
- Mon Mar 15, 2021 8:58 am
- Forum: .NET
- Topic: Marks tip doesn't work properly on overlapped points.
- Replies: 6
- Views: 1560
Re: Marks tip doesn't work properly on overlapped points.
Hello,
As I said in my last message, I cannot reproduce what I see in your video on my machine using the latest NuGet package and the code in your example. I suspect that the effect is an artifact of the process of video capture.
As I said in my last message, I cannot reproduce what I see in your video on my machine using the latest NuGet package and the code in your example. I suspect that the effect is an artifact of the process of video capture.
- Mon Mar 08, 2021 3:31 pm
- Forum: .NET
- Topic: Marks tip doesn't work properly on overlapped points.
- Replies: 6
- Views: 1560
Re: Marks tip doesn't work properly on overlapped points.
Hello,
This is not the behavior I see using your project with the NuGet package you can download (or directly add to your project) from here:
https://www.nuget.org/packages/Steema.TeeChart.NET
Can you please use this assembly to see if you can reproduce the problem with it?
This is not the behavior I see using your project with the NuGet package you can download (or directly add to your project) from here:
https://www.nuget.org/packages/Steema.TeeChart.NET
Can you please use this assembly to see if you can reproduce the problem with it?
- Mon Mar 08, 2021 9:05 am
- Forum: .NET
- Topic: Marks tip doesn't work properly on overlapped points.
- Replies: 6
- Views: 1560
Re: Marks tip doesn't work properly on overlapped points.
Hello,
attached the results I obtain:
I'm afraid I can't see where the problem you mention is occurring.
attached the results I obtain:
I'm afraid I can't see where the problem you mention is occurring.
- Thu Mar 04, 2021 9:34 am
- Forum: .NET
- Topic: Y axis label title and values super imposed
- Replies: 2
- Views: 542
Re: Y axis label title and values super imposed
Hello! The solution to this one is to set the FixedLabelSize property to false, e.g. private void InitializeChart(TChart chart) { var line = new Steema.TeeChart.WPF.Styles.Line(chart.Chart); line.FillSampleValues(); chart.Axes.Left.Title.Text = "Left Axis Title"; } private void button1_Click(object ...
- Wed Feb 17, 2021 5:48 pm
- Forum: .NET
- Topic: "'ToolTip' cannot have a logical or visual parent" error on chart zoom
- Replies: 5
- Views: 1313
Re: "'ToolTip' cannot have a logical or visual parent" error on chart zoom
Hello! Having just the one MarksTip appears to work just fine for this, however I'm curious if it makes any difference and/or might be part of the problem. The route through the code is very similar for specifying a series or not (if one is not specified, it runs the same code over them all) - I thi...
- Wed Feb 17, 2021 10:43 am
- Forum: .NET
- Topic: "'ToolTip' cannot have a logical or visual parent" error on chart zoom
- Replies: 5
- Views: 1313
Re: "'ToolTip' cannot have a logical or visual parent" error on chart zoom
Hello, I've had a look at this, and it does seem a common error - I've found examples of it here , here , here , here , and here . Unfortunately we haven't been able to reproduce the issue. TeeChart.WPF.dll calls the ToolTip via its ChartToolTip here: at System.Windows.Controls.ToolTipService.SetToo...
- Wed Feb 17, 2021 9:13 am
- Forum: .NET
- Topic: "'ToolTip' cannot have a logical or visual parent" error on chart zoom
- Replies: 5
- Views: 1313
Re: "'ToolTip' cannot have a logical or visual parent" error on chart zoom
Hello,
many apologies for having missed this one. We are looking into it now and will get back to you as soon as possible.
many apologies for having missed this one. We are looking into it now and will get back to you as soon as possible.
- Mon Feb 08, 2021 9:39 am
- Forum: .NET
- Topic: Bars are displyed saperately w.r.t left and right axes
- Replies: 4
- Views: 1505
Re: Bars are displyed saperately w.r.t left and right axes
Hello Amol, Commenting out some existing code and adding in a couple more lines gives me the following: WindowsFormsApplication1_2021-02-08_10-37-19.png ArrangeBottomAxes(m_bar2); //m_bar2.MultiBar = Steema.TeeChart.Styles.MultiBars.SideAll; //tChart1.Legend.Visible = true; //tChart1.Aspect.View3D =...
- Fri Feb 05, 2021 8:49 am
- Forum: .NET
- Topic: Bars are displyed saperately w.r.t left and right axes
- Replies: 4
- Views: 1505
Re: Bars are displyed saperately w.r.t left and right axes
Hello,
yes, this is possible - I've attached a retouched project, which here gives me:
yes, this is possible - I've attached a retouched project, which here gives me:
- Thu Jan 21, 2021 10:04 am
- Forum: .NET
- Topic: How to get the value of the right axis?
- Replies: 1
- Views: 878
Re: How to get the value of the right axis?
Hello, please find following a short code snippet which hopefully shows you how this can be done: private void InitializeTChart(TChart chart) { void CursorTool_Change(object sender, CursorChangeEventArgs e) { chart.Header.Text = $"YValue {e.YValue}"; chart.Header.Text += $" Right axis {chart.Axes.Ri...
- Mon Jan 11, 2021 10:50 am
- Forum: .NET
- Topic: .NET 5 support plans for TeeChart v4 Pro in WinForms applications
- Replies: 13
- Views: 5802
Re: .NET 5 support plans for TeeChart v4 Pro in WinForms applications
Let's see if we get a response to this:Christopher wrote: ↑Mon Jan 11, 2021 9:53 amThree working days and two hours, as Wednesday was a national holiday. I'll post to github before the end of today.
https://github.com/dotnet/winforms/issues/4451
- Mon Jan 11, 2021 9:53 am
- Forum: .NET
- Topic: .NET 5 support plans for TeeChart v4 Pro in WinForms applications
- Replies: 13
- Views: 5802
Re: .NET 5 support plans for TeeChart v4 Pro in WinForms applications
Three working days and two hours, as Wednesday was a national holiday. I'll post to github before the end of today.bairog wrote: ↑Mon Jan 11, 2021 9:47 am6 days no reply at SO. Looks like we need to go "github route"..Christopher wrote: ↑Tue Jan 05, 2021 9:47 amI'll leave it a couple of days, and if I get nothing useful I'll post on github.
- Tue Jan 05, 2021 9:47 am
- Forum: .NET
- Topic: .NET 5 support plans for TeeChart v4 Pro in WinForms applications
- Replies: 13
- Views: 5802
Re: .NET 5 support plans for TeeChart v4 Pro in WinForms applications
Yes, I think I will do that if I don't get a workaround I can use from the StackOverflow question. I'll leave it a couple of days, and if I get nothing useful I'll post on github.I think it can be worthy to create an issue directly on winforms github as well