Merge pull request #1869 from NilsNemitz/colorbaritem_ticks

Disable unused ColorBarItem ticks
This commit is contained in:
Ogi Moore 2021-06-26 08:06:37 -07:00 committed by GitHub
commit 5e8f200aa0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -85,7 +85,7 @@ class ColorBarItem(PlotItem):
for key in ['left','right','top','bottom']: for key in ['left','right','top','bottom']:
self.showAxis(key) self.showAxis(key)
axis = self.getAxis(key) axis = self.getAxis(key)
axis.setZValue(1) axis.setZValue(0.5)
# select main axis: # select main axis:
if self.horizontal and key == 'bottom': if self.horizontal and key == 'bottom':
self.axis = axis self.axis = axis
@ -93,7 +93,8 @@ class ColorBarItem(PlotItem):
self.axis = axis self.axis = axis
self.axis.setWidth(45) self.axis.setWidth(45)
else: # show other axes to create frame else: # show other axes to create frame
axis.setStyle( showValues=False, tickLength=0 ) axis.setTicks( [] )
axis.setStyle( showValues=False )
self.axis.setStyle( showValues=True ) self.axis.setStyle( showValues=True )
self.axis.unlinkFromView() self.axis.unlinkFromView()
self.axis.setRange( self.values[0], self.values[1] ) self.axis.setRange( self.values[0], self.values[1] )