How to make a small clickable framed graph in maui

Dave M 21 Reputation points
2022-08-11T17:49:31.093+00:00

I have a model that has a list of trapezoid shapes defined as integer duration1,2,3 , amplitude, and period.

Does anybody have a suggestion to make list of little icon type graphs that look like the particular shape, that can be clicked on to go to a details page to edit the shapes?

I am looking for what method/package that may already exist to make the little graphs from the integers.

Thanks for any pointers.

.NET MAUI
.NET MAUI
A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
3,231 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Dave M 21 Reputation points
    2022-08-11T22:18:45.433+00:00

    Never mind. It was pretty easy to find on https://learn.microsoft.com/en-us/dotnet/maui/. A Polyline, inside a Border, inside a CollectionView with a tap gesture, linked to a viewmodel with point properties for the polyline calculated from my Model that has the trapezoid parameters.