Search found 82 matches

by TLC
Wed Jan 22, 2025 2:41 pm
Forum: .NET
Topic: Steema.TeeChart v6.2025.1.13 doesn't render in MAUI app
Replies: 9
Views: 19582

Re: Steema.TeeChart v6.2025.1.13 doesn't render in MAUI app

Those were with your zip file, and they all rendered as expected.
by TLC
Wed Jan 22, 2025 2:25 am
Forum: .NET
Topic: Steema.TeeChart v6.2025.1.13 doesn't render in MAUI app
Replies: 9
Views: 19582

Re: Steema.TeeChart v6.2025.1.13 doesn't render in MAUI app

Tried the following with your zip file: As is in Net 8.0 / Maui.Controls 8.0.100 Update to Net 9.0 / Maui.Controls 9.0.30 XAML and comment out Content assignment in cs file Content assignment in cs file All renders as expected. My project still doesn't, for reasons unknown. I also tried the simple d...
by TLC
Tue Jan 21, 2025 5:18 am
Forum: .NET
Topic: Steema.TeeChart v6.2025.1.13 doesn't render in MAUI app
Replies: 9
Views: 19582

Re: Steema.TeeChart v6.2025.1.13 doesn't render in MAUI app

I tried it with Xaml and C# only; both do not display.
by TLC
Wed Jan 15, 2025 12:32 am
Forum: .NET
Topic: Steema.TeeChart v6.2025.1.13 doesn't render in MAUI app
Replies: 9
Views: 19582

Steema.TeeChart v6.2025.1.13 doesn't render in MAUI app

Steema.TeeChart v6.2025.1.13 doesn't show up / nothing is rendered in a MAUI app for both iOS and Android using Steema.TeeChart.Maui; using Steema.TeeChart.Styles; namespace Project; #if DEBUG public sealed class DebugTChart : ContentPage { private readonly TChart _tChart; private readonly Line _lin...
by TLC
Thu Dec 12, 2024 6:58 pm
Forum: .NET
Topic: MAUI Line chart makes a white bubble on point on drag.
Replies: 4
Views: 25609

Re: MAUI Line chart makes a white bubble on point on drag.

Steema.TeeChart.NET.MAUI v6.2024.11.6 is installed and yes it does
by TLC
Wed Dec 04, 2024 5:15 pm
Forum: .NET
Topic: MAUI Line chart makes a white bubble on point on drag.
Replies: 4
Views: 25609

Re: MAUI Line chart makes a white bubble on point on drag.

Also more config: public static void ConfigureChart( this Chart chart, string font = Charts.FONT ) { chart.Zoom.Active = true; chart.Zoom.History = true; chart.Zoom.Direction = ZoomDirections.Both; chart.ToolTip.AutoPopDelay = 100; chart.ToolTip.InitialDelay = 500; chart.ToolTip.ForeColor = Black; c...
by TLC
Wed Dec 04, 2024 4:15 pm
Forum: .NET
Topic: MAUI - Please make the event handlers for TChart protected virtual
Replies: 1
Views: 9948

MAUI - Please make the event handlers for TChart protected virtual

MAUI - Please make the event handlers for TChart protected virtual instead of private private void TapGestureRecognizer_Tapped1(object sender, TappedEventArgs e); protected virtual void TChart_Tap(object sender, TappedEventArgs e); // duplicate version of "TapGestureRecognizer_Tapped1"? They have t...
by TLC
Tue Dec 03, 2024 11:01 pm
Forum: .NET
Topic: MAUI Line chart makes a white bubble on point on drag.
Replies: 4
Views: 25609

MAUI Line chart makes a white bubble on point on drag.

MAUI Line chart makes a white/transparent bubble on point on drag. the bubble moves with the drag, as if panning moves the bubble along. Below the Line config. public static Line CreateLine( this Chart chart ) { Line line = new(chart) { ColorEach = false, ColorEachLine = false, TreatNaNAsNull = true...
by TLC
Fri Nov 22, 2024 3:37 pm
Forum: .NET
Topic: Annotations are broken. Can't draw on the canvas.
Replies: 17
Views: 100211

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

Found the problem-- I added the following and it fixed it as i'm initiating the draw from another place.

Code: Select all

    protected override void ChartEvent( EventArgs e ) { } // => base.ChartEvent( e );
by TLC
Wed Nov 20, 2024 4:15 pm
Forum: .NET
Topic: Annotations are broken. Can't draw on the canvas.
Replies: 17
Views: 100211

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

Hello, which code are you using to draw the annotation? Drawing the annotation inside the OnAfterDraw event should do the trick. If you send me code that you're using I can check it here. Thanks Unfortunately, I can't send the source code as its private. it is possible the AfterDraw event is gettin...
by TLC
Tue Nov 19, 2024 8:07 pm
Forum: .NET
Topic: Annotations are broken. Can't draw on the canvas.
Replies: 17
Views: 100211

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

Somehow, the annotation popup hangs around after it is redrawn/invalidated. Only the most recent previous popup is visible aside from the current one. In otherwords, once you click again, it will remove the 2nd oldest, keeping the previous and draws the new one. The arrow from is the current one, th...
by TLC
Thu Nov 14, 2024 10:27 pm
Forum: .NET
Topic: Steema.TeeChart.Tools.NearestPoint Change event doesn't trigger
Replies: 6
Views: 33784

Re: Steema.TeeChart.Tools.NearestPoint Change event doesn't trigger

So i found the cause... and it's a few issues from the source code: Most of it is instead of leaving the value as a double, you are converting it to an int. This is a loss of precision and can greatly affect the developer when trying to figure out which point the end users has pressed. This happens ...
by TLC
Wed Nov 13, 2024 9:24 pm
Forum: .NET
Topic: Steema.TeeChart.Tools.NearestPoint Change event doesn't trigger
Replies: 6
Views: 33784

Re: Steema.TeeChart.Tools.NearestPoint Change event doesn't trigger

the work around doesn't really work afterall-- it's always at the first point. doesn't change no matter where i click or drag.
by TLC
Wed Nov 13, 2024 9:23 pm
Forum: .NET
Topic: Annotations are broken. Can't draw on the canvas.
Replies: 17
Views: 100211

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

Not sure how, but got the arrow to show up. but as related to the issue Steema.TeeChart.Tools.NearestPoint Change event doesn't trigger http://support.steema.com/viewtopic.php?f=4&t=18263&sid=f489335f5e76f1f1342280e7a75ee146 , it's always at the first point. doesn't change no matter where i click or...