Skip to content

Commit f98425a

Browse files
authored
Merge branch 'develop' into HistogramItemNaming
2 parents 4ced53f + 0ec0a20 commit f98425a

File tree

3 files changed

+9
-11
lines changed

3 files changed

+9
-11
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ All notable changes to this project will be documented in this file.
5959
- Out of memory exception and performance issue with Catmull-Rom Spline (#1237)
6060
- Cache and Dispose Brush and Pen objects used by GraphicsRenderContext (#1230)
6161
- Fixed references to RectangleItem in HistogramSeries
62+
- Fix AxisChangedEventArgs.DeltaMaximum in Axes.Reset (#1306)
6263

6364
## [1.0.0] - 2016-09-11
6465
### Added

README.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,16 @@
11
OxyPlot is a cross-platform plotting library for .NET
22

3-
- [Web page](http://oxyplot.org/)
4-
- [Documentation](http://docs.oxyplot.org/)
5-
- [Announcements](http://oxyplot.org/announcements) / [atom](http://oxyplot.org/atom.xml)
6-
- [Discussion forum](http://discussion.oxyplot.org/)
7-
- [Source repository](http://github.com/oxyplot/oxyplot)
8-
- [Issue tracker](http://github.com/oxyplot/oxyplot/issues)
9-
- [NuGet packages](http://www.nuget.org/packages?q=oxyplot)
10-
- [Stack Overflow](http://stackoverflow.com/questions/tagged/oxyplot)
3+
- [Web page](https://oxyplot.github.io)
4+
- [Documentation](https://oxyplot.readthedocs.io/en/latest/)
5+
- [Discussion forum](https://oxyplot.userecho.com/)
6+
- [NuGet packages](https://www.nuget.org/packages?q=oxyplot)
7+
- [Stack Overflow](https://stackoverflow.com/questions/tagged/oxyplot)
118
- [Twitter](https://twitter.com/hashtag/oxyplot)
129
- [Gitter](https://gitter.im/oxyplot/oxyplot) (chat)
1310

1411
![License](https://img.shields.io/badge/license-MIT-red.svg) [![Build status](https://img.shields.io/appveyor/ci/objorke/oxyplot/develop.svg)](https://ci.appveyor.com/project/objorke/oxyplot)
1512

16-
![Plot](http://oxyplot.org/public/images/normal-distributions.png)
13+
![Plot](https://oxyplot.github.io/public/images/normal-distributions.png)
1714

1815
#### Getting started
1916

Source/OxyPlot/Axes/Axis.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -964,7 +964,7 @@ public virtual void Render(IRenderContext rc, int pass)
964964
public virtual void Reset()
965965
{
966966
var oldMinimum = this.ActualMinimum;
967-
var oldMaximum = this.ActualMinimum;
967+
var oldMaximum = this.ActualMaximum;
968968

969969
this.ViewMinimum = double.NaN;
970970
this.ViewMaximum = double.NaN;
@@ -1734,4 +1734,4 @@ protected virtual void OnTransformChanged(EventArgs args)
17341734
}
17351735
}
17361736
}
1737-
}
1737+
}

0 commit comments

Comments
 (0)