Skip to content

Commit 2b701b3

Browse files
authored
Merge pull request oxyplot#1238 from rostov-da/develop
Fix Issue oxyplot#1235
2 parents 691a339 + 314c256 commit 2b701b3

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Source/OxyPlot/PlotModel/PlotModel.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -856,6 +856,11 @@ public void GetAxesFromPoint(ScreenPoint pt, out Axis xaxis, out Axis yaxis)
856856

857857
foreach (var axis in this.Axes)
858858
{
859+
if(!axis.IsAxisVisible)
860+
{
861+
continue;
862+
}
863+
859864
if (axis is IColorAxis)
860865
{
861866
continue;

0 commit comments

Comments
 (0)