Search found 45 matches

by Edu
Mon Mar 03, 2025 10:37 am
Forum: .NET
Topic: custom y axes title
Replies: 2
Views: 58

Re: custom y axes title

Hello, A way to achieve this is through the AfterDraw event ( _TChart.AfterDraw += _TChart_AfterDraw; ) I set up an example for you: private void _TChart_AfterDraw(object sender, IGraphics3D g) { // Keep in mind what PositionUnits we're using. I'm choosing Percent, adjust accordingly. _YAxis.Positio...
by Edu
Fri Feb 28, 2025 12:14 pm
Forum: .NET
Topic: Custom y axis labels
Replies: 4
Views: 1499

Re: Custom y axis labels

Hello, Thank you for providing the code sample. I was able to reproduce the issue successfully. The problem occurs when the max value set using axis.SetMinMax(newMin, newMax); is slightly lower than the actual maximum value that should be displayed. This can happen even when the difference is very s...
by Edu
Wed Jan 22, 2025 9:37 am
Forum: .NET
Topic: Disabling Default Mouse Zoom in TeeChart for WPF
Replies: 2
Views: 5533

Re: Disabling Default Mouse Zoom in TeeChart for WPF

Hello Tom, Now, I would like to disable the default zoom behavior (holding the left mouse button to zoom). Could you please advise on how to achieve this? To disable the default zoom behavior you can do it by setting the Zoom.Direction value to ZoomDirections.None For example: tChart1.Zoom.Direction...
by Edu
Mon Jan 20, 2025 10:33 am
Forum: .NET
Topic: Requesting DLL Download for TeeChart for .NET Pro Edition 2024 in a .NET 8.0 Environment
Replies: 3
Views: 7822

Re: Requesting DLL Download for TeeChart for .NET Pro Edition 2024 in a .NET 8.0 Environment

Hello mdstech, I'm experiencing an issue where the Styles method does not appear in TeeChart.WPF.dll. Could you possibly know what might be causing this? Could it be due to other dependencies? When working with WPF and TeeChart, "Styles" is under Steema.Teechart. WPF .Styles. Are you able to access ...
by Edu
Thu Jan 16, 2025 12:16 pm
Forum: .NET
Topic: Requesting DLL Download for TeeChart for .NET Pro Edition 2024 in a .NET 8.0 Environment
Replies: 3
Views: 7822

Re: Requesting DLL Download for TeeChart for .NET Pro Edition 2024 in a .NET 8.0 Environment

Hello mdstech, NuGet packages are essentially ZIP files, and you can extract their contents directly. Steps to Extract the DLLs: 1.- Download the NuGet Package: You can download the package from this link: https://www.nuget.org/packages/Steema.TeeChart.NET/4.2024.11.14 2.- Extract the Files: Rename ...
by Edu
Thu Dec 19, 2024 3:49 pm
Forum: .NET
Topic: TeeChart .NET For Blazor Nested Legend Series
Replies: 1
Views: 10815

Re: TeeChart .NET For Blazor Nested Legend Series

Hello, TChart Blazor doesn't offer a way to create groups of series in the legend. However, through custom code (js) you can decide which series are active at a time. This way you could have, for example, a function that activates some series and hides the other ones, completely up to you. Best rega...
by Edu
Mon Nov 25, 2024 9:55 am
Forum: .NET
Topic: Teechart .NET 4.2024.11.14 - Import/Export from/to .ten format doesn't work as expected
Replies: 1
Views: 9414

Re: Teechart .NET 4.2024.11.14 - Import/Export from/to .ten format doesn't work as expected

Hello: From a console application, please use the class TChart to access Export functionality. While the class 'Chart' does the job with UI Frameworks like Winforms, it is limited when it comes to console apps. Here's how the code would look like, following the code you provided, instead of "Chart c...
by Edu
Mon Nov 04, 2024 10:37 am
Forum: .NET
Topic: Annotations are broken. Can't draw on the canvas.
Replies: 17
Views: 99885

Re: Annotations are broken. Can't draw on the canvas.

Hello,

I have tried to reproduce your issue but creating and setting up Annotations seems to work as expected on my end.
Could you please share additional details or code context so we can assist you further?

Best regards,
Edu
by Edu
Wed Oct 09, 2024 10:19 am
Forum: .NET
Topic: TeeChart .NET For Blazor Chart not displaying
Replies: 15
Views: 125892

Re: TeeChart .NET For Blazor Chart not displaying

Hello, I have been reviewing your project. I noticed you are using our demos as a baseline and then adding things on top to test things out. This practice is perfectly fine, however, there are a few things that I would like to point out. This is a step-by-step guide not only for resolving the curren...
by Edu
Fri Oct 04, 2024 6:57 am
Forum: .NET
Topic: TeeChart .NET For Blazor Chart not displaying
Replies: 15
Views: 125892

Re: TeeChart .NET For Blazor Chart not displaying

Hello,

You can upload your zip file through this link https://steema.net/uploads/

Best regards,
Edu
by Edu
Thu Oct 03, 2024 3:42 pm
Forum: .NET
Topic: TeeChart .NET For Blazor Chart not displaying
Replies: 15
Views: 125892

Re: TeeChart .NET For Blazor Chart not displaying

Update: The following scripts do not render a chart either. <script> var dynoTeeChart; dynoTeeChart=new Tee.Chart("canvas1"); dynoTeeChart.scroll.direction ='both'; dynoTeeChart.zoom.direction ='both'; dynoTeeChart.panel.format.fill="#FFFFFF"; dynoTeeChart.panel.format.gradient.colors = ["#EAEAEA",...
by Edu
Thu Oct 03, 2024 2:43 pm
Forum: .NET
Topic: TeeChart .NET For Blazor Chart not displaying
Replies: 15
Views: 125892

Re: TeeChart .NET For Blazor Chart not displaying

Hello,

Thank you for your reply. Could you please share the entire project so I can review it and suggest a more effective solution? If the project contains sensitive data, a simplified version will work just as well.
by Edu
Thu Oct 03, 2024 11:49 am
Forum: .NET
Topic: TeeChart .NET For Blazor Chart not displaying
Replies: 15
Views: 125892

Re: TeeChart .NET For Blazor Chart not displaying

Hello, The problem appears to be caused by a part of the code that we assume to be added by customCode being added to the export. All appears to work corrcetly except for this part: dynoTeeChart.onzoom = function() { console.log('zoom function triggered.') DotNet.invokeMethodAsync('TeeChartOnBlazor'...
by Edu
Fri Sep 06, 2024 10:38 am
Forum: .NET
Topic: TeeChart .NET For Blazor Getting series y position in pixels
Replies: 3
Views: 44818

Re: TeeChart .NET For Blazor Getting series y position in pixels

Hello, customCode.Add($"{aChart.Export.Image.JScript.ChartName}.afterdraw = function()"); The function you're trying to use is called ondraw . Maybe this change alone fixes the issues you're encountering. For example: customCode.Add($"{chartName}.ondraw = function()"); customCode.Add("{"); customCod...
by Edu
Fri Sep 06, 2024 6:26 am
Forum: .NET
Topic: Bottom subaxis manual text is not added
Replies: 3
Views: 44537

Re: Bottom subaxis manual text is not added

Hello,

I am reviewing this issue you're experiencing and want to make sure everything is up to date on your end. Could you verify if you're using our latest version? My tests are working fine on my end, so I just want to make sure we're on the same page.

Regards,
Edu