v2.0.0-rc4
Pre-releaseThis release is a detailed review on every open issue in the library, the reliability of the library should be drastically improved.
Now the library is compatible with SkiaSharp 3, also the Maui, Uno and WinUI views use SkiaSharp 3 by default.
There are still some issues that need attention before the first GA version.
Breaking Changes
There are no breaking changes, but this release removes most of the code that was marked as [Obsolete]
in previous versions, so before updating to this version, ensure that there is no an Obsolete warning in the compiler log, here is a list of the most common features in the library that were removed in older versions:
- When using Mappers, instead of using
point.PrimaryValue
, now usepoint.Coordinate.PrimaryValue
- The
AsLiveChartsPieSeries()
extension changed toAsPieSeries()
- On Maui, please update the
MauiProgram.cs
file, change.UseSkiaSharp(true)
to.UseSkiaSharp()
All the documentation on the website is updated, all obsoletes should be removed fro docs now, to get a full list please see the changes on #1625.
Highlights
- The library is now compatible with SkiaSharp 3
- Themes were updated in #1662, now they render legends, tooltips, titles and angular gauges properly.
- Toggling series visibility was buggy, especially when using observable collections, this is now fixed with #1656, and visuals are now disposed properly from the UI.
- Docs were simplified, now we abuse of collection expressions to reduce boilerplate code, the code style in the samples is now consistent across the site.
- We can now control the number of labels/separatos using the
Axis.LabelsDensity
property
New samples
The library now has advanced customization samples like:
fixed issues:
What's Changed
- update dev... by @beto-rodriguez in #1605
- rc3.3 by @beto-rodriguez in #1606
- Remove obsoletes by @beto-rodriguez in #1625
- perf: MAUI MotionCanvas - only fetch density from MainDisplayInfo when changed by @Kay-STL in #1626
- separate variable svg from static svg shapes by @beto-rodriguez in #1631
- makes Series.Values property model-typed by @beto-rodriguez in #1634
- Docs review by @beto-rodriguez in #1630
- fixes #1609 by @beto-rodriguez in #1638
- Bye strong named by @beto-rodriguez in #1640
- Labels density by @beto-rodriguez in #1643
- Axes fixes by @beto-rodriguez in #1647
- add customPoints sample by @beto-rodriguez in #1649
- Add example to build #995 by @beto-rodriguez in #1650
- Fix 1162 by @beto-rodriguez in #1652
- Update tests by @beto-rodriguez in #1653
- Visibility rework by @beto-rodriguez in #1656
- Memory tests by @beto-rodriguez in #1658
- fixes an issue introduced in #1640 by @beto-rodriguez in #1659
- Simplify miniatures by @beto-rodriguez in #1660
- Update themes by @beto-rodriguez in #1662
- Inverted axes by @beto-rodriguez in #1664
- SkiaSharp 3 by @beto-rodriguez in #1622
- Release candidate 4 by @beto-rodriguez in #1667
New Contributors
Full Changelog: v2.0.0-rc3...v2.0.0-rc4