diff --git a/fsl/fsleyes/controls/locationpanel.py b/fsl/fsleyes/controls/locationpanel.py
index 9937e3d3e338b980a30c2d484c61fbcbd7b92e76..ee9a357dd31e83cc9405076ee9e43dff6c40d23a 100644
--- a/fsl/fsleyes/controls/locationpanel.py
+++ b/fsl/fsleyes/controls/locationpanel.py
@@ -43,12 +43,12 @@ class LocationPanel(fslpanel.FSLEyesPanel):
     """
 
     
-    voxelLocation = props.Point(ndims=3, real=False, labels=('X', 'Y', 'Z'))
+    voxelLocation = props.Point(ndims=3, real=False)
     """If the currently selected overlay is a :class:`.Image`, this property
     tracks the current display location in voxel coordinates.
     """
     
-    worldLocation = props.Point(ndims=3, real=True,  labels=('X', 'Y', 'Z'))
+    worldLocation = props.Point(ndims=3, real=True)
 
         
     def __init__(self, parent, overlayList, displayCtx):
diff --git a/fsl/fsleyes/displaycontext/displaycontext.py b/fsl/fsleyes/displaycontext/displaycontext.py
index 33b01befa99439771438da661b8df7e284951c9d..b591eb54ff320db96ddce60c54f40d3169d49f8f 100644
--- a/fsl/fsleyes/displaycontext/displaycontext.py
+++ b/fsl/fsleyes/displaycontext/displaycontext.py
@@ -44,7 +44,7 @@ class DisplayContext(props.SyncableHasProperties):
     """
 
 
-    location = props.Point(ndims=3, labels=('X', 'Y', 'Z'))
+    location = props.Point(ndims=3)
     """The location property contains the currently selected
     3D location (xyz) in the current display coordinate system.
     """