Search found 43 matches
- Wed Jan 22, 2025 9:37 am
- Forum: .NET
- Topic: Disabling Default Mouse Zoom in TeeChart for WPF
- Replies: 1
- Views: 24
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...
- 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: 984
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 ...
- 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: 984
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 ...
- Thu Dec 19, 2024 3:49 pm
- Forum: .NET
- Topic: TeeChart .NET For Blazor Nested Legend Series
- Replies: 1
- Views: 5257
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...
- 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: 4910
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...
- Mon Nov 04, 2024 10:37 am
- Forum: .NET
- Topic: Annotations are broken. Can't draw on the canvas.
- Replies: 17
- Views: 67661
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
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
- Wed Oct 09, 2024 10:19 am
- Forum: .NET
- Topic: TeeChart .NET For Blazor Chart not displaying
- Replies: 15
- Views: 95748
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...
- Fri Oct 04, 2024 6:57 am
- Forum: .NET
- Topic: TeeChart .NET For Blazor Chart not displaying
- Replies: 15
- Views: 95748
- Thu Oct 03, 2024 3:42 pm
- Forum: .NET
- Topic: TeeChart .NET For Blazor Chart not displaying
- Replies: 15
- Views: 95748
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",...
- Thu Oct 03, 2024 2:43 pm
- Forum: .NET
- Topic: TeeChart .NET For Blazor Chart not displaying
- Replies: 15
- Views: 95748
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.
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.
- Thu Oct 03, 2024 11:49 am
- Forum: .NET
- Topic: TeeChart .NET For Blazor Chart not displaying
- Replies: 15
- Views: 95748
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'...
- Fri Sep 06, 2024 10:38 am
- Forum: .NET
- Topic: TeeChart .NET For Blazor Getting series y position in pixels
- Replies: 3
- Views: 35260
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...
- Fri Sep 06, 2024 6:26 am
- Forum: .NET
- Topic: Bottom subaxis manual text is not added
- Replies: 3
- Views: 35150
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
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
- Thu Sep 05, 2024 3:33 pm
- Forum: .NET
- Topic: Bottom subaxis manual text is not added
- Replies: 3
- Views: 35150
Re: Bottom subaxis manual text is not added
Hello, Adding these lines, your code should work. axis.Maximum = 50; axis.AutomaticMaximum = false; You can learn more about other options for axes, such as custom axes and axis copy here: https://steema.com/docs/teechart/net/tutorials/html/TeeChartProNetTutorialsContentsTutorial4-AxisControl.htm If...
- Thu Sep 05, 2024 11:43 am
- Forum: .NET
- Topic: When you click the legend, series high light?
- Replies: 5
- Views: 46568
Re: When you click the legend, series high light?
Hello, // Error CS1061 'Legend' does not include a definition for 'ActiveStyle'. Chart1.Legend.ActiveStyle = LegendActiveStyles.Opacity; 'ActiveStyle'. // Error Chart1.Legend.ActiveStyle = LegendActiveStyles.LineThrough; // Error CS1061 Please note that activeStyle is a recent new feature so if you ...