Microcharts
Microcharts copied to clipboard
Create cross-platform (Xamarin, Windows, ...) simple charts.
So the offending structural set up is based around the fact that the ChartView presumes[ properties on a chart](https://github.com/dotnet-ad/Microcharts/blob/9df19fe5151bd1f12b84ba5b645ea320ceb8487c/Sources/Microcharts/Charts/Chart.cs#L409) are always being changed on the main UI thread. This is...
I would say PR #291 is a prequisite for this. This is my initial pull request for pinch and zoom. I believe it is feature complete at this point. When...
The updated nuget version handles alpha correctly (ref https://github.com/rafntor/Eto.SkiaDraw/commit/6be7feaeaf36a83e9b5a27f232f706cdc937276f)
What i use for both is this ``` new LineChart { Entries = entries, MinValue = minVal - 0.5f, MaxValue = maxVal + 0.5f, Margin = margin, LabelTextSize = labelSize,...
Adding a line chart does not fill the full canvas space. Interestingly, adding more data points expands the chart closer to the edge of the canvas. From testing, it takes...
Implementing Maui plaform for Microcharts. Adding 2 more supported platforms : - [X] Maui - [X] WinUI Adding 2 more sample : - [X] Maui (including Maui.WinUI) - [ ]...
We have two sets of data for the current month and for the previous. Both are positive(sales data). Rendering data with Barchart, actually, all charts that inherit from AxisBasedChart have...
Hello, I have two questions: 1. Is it possible to increase label padding on screeshot? 2. Is it possible to hide only value labels and keep showing labels? 
Currently, you cannot set the Min/Max values of the chart to be more constrained than the Min/Max values of the dataset. If I modify the code to force this, it...
This is a consolidation of these two issues: - #150 - #80 However there is a prerequisite issue: - #295 The basic idea is that once we have a clip...