Øystein Bjørke
Øystein Bjørke
This issue should be moved to https://github.com/oxyplot/oxyplot-xamarin
This issue should be moved to https://github.com/oxyplot/oxyplot-xamarin
I think the invalidate/update implementations on all platforms should be aligned. #1153
Most series contains a `LabelFormatString property`. I think this property can be moved to ` ItemsSeries`... Then it should be possible to create a method `string GetFormattedLabel(object item)` in `ItemsSeries`
There could also be a `Func LabelMapping` function, similar to the `Mapping` property.
Sorry, I am not active in this project at the moment. @VisualMelon could you review the PR? @oxyplot/admins
HeatMapSeries: it should be possible to do this when rendering by rectangles (not bitmap). I think it already supports log axes!
https://github.com/oxyplot/oxyplot/compare/develop...dynamatt:%23911 I will have a look later!
let us handle the polar case in a separate issue (the `PolarHeatMapSeries` is in the example library only) - make it easier to close this issue
Could this be implemented by creating "coordinate definition" classes: ```csharp enum CoordinatePosition { Center, Edge } class CoordinateDefinition { CoordinatePosition Position } class UniformLinearCoordinateDefinition : CoordinateDefinition { double X0 double...