Search found 26 matches

by dynamicrisk
Tue Dec 17, 2024 3:20 pm
Forum: .NET
Topic: TeeChart .NET For Blazor Nested Legend Series
Replies: 1
Views: 1061

TeeChart .NET For Blazor Nested Legend Series

Hello,

I am wondering if it possible to group legend series under a category.
Here is an example.
LegendCategories.PNG
LegendCategories.PNG (5.64 KiB) Viewed 1061 times
Thanks
by dynamicrisk
Tue Dec 03, 2024 9:14 pm
Forum: JavaScript / HTML5
Topic: Tee.ToolTip for canvas graphics
Replies: 3
Views: 4939

Re: Tee.ToolTip for canvas graphics

Hi Marc,

Is it possible to set have different pointer sizes for a series? I believe this would work if I could set the pointer.HorizSize and VertSize for each data point. Is it also possible have the pointer size set as a double instead of int?

Thanks
by dynamicrisk
Tue Dec 03, 2024 4:42 pm
Forum: JavaScript / HTML5
Topic: Tee.ToolTip for canvas graphics
Replies: 3
Views: 4939

Tee.ToolTip for canvas graphics

Hello,

I am wondering if it is possible to use Tee.ToolTip class to display tooltips for canvas graphics instead of the chart series? I have my series points set to have a size of 0, and am using Tee.Format.rectangle() for each series point instead.

Thanks
by dynamicrisk
Wed Nov 20, 2024 10:39 pm
Forum: JavaScript / HTML5
Topic: Blazor Chart Cursor Offset
Replies: 1
Views: 4135

Blazor Chart Cursor Offset

Hello, I have a chart being in rendered into the following canvas. <tally-chart> <canvas id="canvas1" height="500" style="border: 0px solid #808080;" oncl /> </tally-chart> I am trying to get my chart to extended to the end of my window without hard coding in a width. I currently have width set to 1...
by dynamicrisk
Tue Nov 12, 2024 10:54 pm
Forum: .NET
Topic: TeeChart .NET For Blazor Chart does not zoom out correctly
Replies: 6
Views: 15053

Re: TeeChart .NET For Blazor Chart does not zoom out correctly

Hi Marc,

I have the chart zooming out correctly now thanks. However I noticed that when I added dynoTeeChart.aspect.clipRect(dynoTeeChart.chartRect) that my chart axes no longer updated when I zoomed in or out?

Thanks
by dynamicrisk
Thu Nov 07, 2024 3:54 pm
Forum: .NET
Topic: TeeChart .NET For Blazor Chart does not zoom out correctly
Replies: 6
Views: 15053

Re: TeeChart .NET For Blazor Chart does not zoom out correctly

Hi Marc, Is it possible to override this somehow with an event handler or something? I already have my zoom and scroll direction set to horizontal, but I need to ensure that my left axis is always set from 0 - 12 regardless of the data set being displayed in the graph. Do you know if there is also a...
by dynamicrisk
Wed Nov 06, 2024 5:10 pm
Forum: .NET
Topic: TeeChart .NET For Blazor Chart does not zoom out correctly
Replies: 6
Views: 15053

Re: TeeChart .NET For Blazor Chart does not zoom out correctly

It looks like the zoom out is working correctly but it doesn't reset the chart to the original size. I currently have my bottom axis set to +-0.5 for my data range and zoom seems to be using a different property to set the chart back to the original size.
by dynamicrisk
Tue Nov 05, 2024 10:17 pm
Forum: .NET
Topic: TeeChart .NET For Blazor Chart does not zoom out correctly
Replies: 6
Views: 15053

TeeChart .NET For Blazor Chart does not zoom out correctly

Hello, I have a chart that is being generated with the following script. <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 =...
by dynamicrisk
Mon Oct 07, 2024 1:26 pm
Forum: .NET
Topic: TeeChart .NET For Blazor Chart not displaying
Replies: 15
Views: 71281

Re: TeeChart .NET For Blazor Chart not displaying

Ok it says the file has been successfully uploaded.
by dynamicrisk
Fri Oct 04, 2024 9:25 pm
Forum: .NET
Topic: TeeChart .NET For Blazor Chart not displaying
Replies: 15
Views: 71281

Re: TeeChart .NET For Blazor Chart not displaying

Hi,

I uploaded the file. I am not sure if it completed though. Here is a screenshot of the web page I received after uploading.
by dynamicrisk
Fri Oct 04, 2024 1:48 pm
Forum: .NET
Topic: TeeChart .NET For Blazor Chart not displaying
Replies: 15
Views: 71281

Re: TeeChart .NET For Blazor Chart not displaying

Getting this when I navigate to the link.
by dynamicrisk
Thu Oct 03, 2024 9:00 pm
Forum: .NET
Topic: TeeChart .NET For Blazor Chart not displaying
Replies: 15
Views: 71281

Re: TeeChart .NET For Blazor Chart not displaying

Hi Edu,

The chart is still not rendering. Is there a way to send the test app as the forum says the .zip is too large to share?

Thanks
by dynamicrisk
Thu Oct 03, 2024 2:35 pm
Forum: .NET
Topic: TeeChart .NET For Blazor Chart not displaying
Replies: 15
Views: 71281

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 dynamicrisk
Thu Oct 03, 2024 2:11 pm
Forum: .NET
Topic: TeeChart .NET For Blazor Chart not displaying
Replies: 15
Views: 71281

Re: TeeChart .NET For Blazor Chart not displaying

Hi Edu,

Thanks for the reply. I removed those lines and it looks like the chart is still not rendering.
by dynamicrisk
Wed Oct 02, 2024 9:10 pm
Forum: .NET
Topic: TeeChart .NET For Blazor Chart not displaying
Replies: 15
Views: 71281

TeeChart .NET For Blazor Chart not displaying

Hello, I am trying to display a chart in a test project. My Chart.razor file contains the following code: @page "/chart" @using TestApp.Chart; @using Microsoft.Extensions.Localization; @using System.Reflection; @using System.Resources; @using System.IO; @using Microsoft.AspNetCore.Components; <h3> @...