Search found 1325 matches
- Thu Jan 21, 2021 10:04 am
- Forum: .NET
- Topic: How to get the value of the right axis?
- Replies: 1
- Views: 28
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: 2453
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: 2453
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: 2453
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
- Tue Jan 05, 2021 7:58 am
- Forum: .NET
- Topic: .NET 5 support plans for TeeChart v4 Pro in WinForms applications
- Replies: 13
- Views: 2453
Re: .NET 5 support plans for TeeChart v4 Pro in WinForms applications
So looking forward for it. So are we! It seems that the .NET 5.0 Windows Form designer still doesn't have exactly the same functionality as the .NET Framework Windows Form designer, which means we can't implement the functionality you mention until we have a resolution to the issue which I have det...
- Mon Nov 30, 2020 9:19 am
- Forum: .NET
- Topic: Changing appearance of points in Points series
- Replies: 1
- Views: 720
Re: Changing appearance of points in Points series
Hello, yes, the Points series has a Pointer property which you can use to change the color, style, and width of the Points series pointer. However, to simply make the series invisible without using the Series.Visible property - which means that Axis labels and Legend(s) continue to be rendered - an ...
- Mon Nov 30, 2020 8:43 am
- Forum: .NET
- Topic: Show logo in chart (c#)
- Replies: 1
- Views: 549
Re: Show logo in chart (c#)
Hello, I would say the easiest and most powerful way to draw images to the Chart is to use one of the Draw overloads within one of TChart's custom drawing events. Here's an example of what I mean, using an image which has been added as a resource to the project: private void InitializeChart(TChart c...
- Tue Nov 10, 2020 8:51 am
- Forum: .NET
- Topic: Programmatically Creating DrawLineItem Error Null Handles Exception
- Replies: 3
- Views: 1319
- Mon Nov 09, 2020 2:16 pm
- Forum: .NET
- Topic: .NET Live Demo page is broken
- Replies: 3
- Views: 1271
- Mon Nov 09, 2020 10:29 am
- Forum: .NET
- Topic: 3D chart is not working in ASP .NET Core 3.1 Example
- Replies: 10
- Views: 2091
Re: 3D chart is not working in ASP .NET Core 3.1 Example
Hello, What do you mean by "different version"? You're right, my mistake, they are the same version. So if I need an ASP .NET Core 3.1 web application with 3D pie chart and mouse functionality (tooltip, click, zoom, scroll, etc.) - what is the option for me? No options with your library? I'm not sur...
- Mon Nov 09, 2020 10:05 am
- Forum: .NET
- Topic: Programmatically Creating DrawLineItem Error Null Handles Exception
- Replies: 3
- Views: 1319
Re: Programmatically Creating DrawLineItem Error Null Handles Exception
Hello Joseph, I think the reason is that you are using the parameterless constructor of DrawLineItem, which means that EndHandle will throw an error (following code is from the sourcecode): public Rectangle EndHandle { get { return RectangleFromPoint(tool.AxisPoint(EndPos)); } } It will throw an err...
- Mon Nov 09, 2020 9:55 am
- Forum: .NET
- Topic: 3D chart is not working in ASP .NET Core 3.1 Example
- Replies: 10
- Views: 2091
Re: 3D chart is not working in ASP .NET Core 3.1 Example
Hello, Where I can find an example of exporting to image? Although it uses a different version of TeeChart, the TeeChart syntax is the same as that shown here . What is difference in functionality (legend, mouse interaction, etc.) or performance between JS/HTML5 export and image export? Thank you in...
- Mon Nov 09, 2020 9:36 am
- Forum: .NET
- Topic: 3D chart is not working in ASP .NET Core 3.1 Example
- Replies: 10
- Views: 2091
Re: 3D chart is not working in ASP .NET Core 3.1 Example
But chart is still 2D. Is that by design or a bug? Does your web component have functional parity with WinForms or where can I read abiut all it's limitations? It's by design. In that example you will see that the Chart is being exported as a JavaScript Chart which renders to HTML5. The JS/HTML5 Ch...
- Thu Nov 05, 2020 9:32 am
- Forum: .NET
- Topic: Problems with Copy-Paste the whole chart.
- Replies: 5
- Views: 1983
Re: Problems with Copy-Paste the whole chart.
Hello, Any updates on this? It's a real pain to create similar complex charts from scratch without be able to simply copy them.. You don't have to create them from scratch, as I mentioned, you can use the TeeChart native template files. To make it clear, please find a short screenshot gif I made to ...
- Wed Nov 04, 2020 10:06 am
- Forum: .NET
- Topic: DrawLineItem
- Replies: 2
- Views: 919
Re: DrawLineItem
Hello,
you beat me to it! Very glad to see you managed to arrive at a satisfactory solution.
you beat me to it! Very glad to see you managed to arrive at a satisfactory solution.