I created a independent colorbar with EqHistColorMapper and any one type of Ticker, but no any ticks on it, and, if I used the LinearColorMapper and FixedTicker or SingleIntervalTicker, this problem did not arise, could anybody tell me how to solve this problem?
example codes:
from bokeh.plotting import show, row
from bokeh.plotting import figure
from bokeh.models import ColorBar, LinearColorMapper, EqHistColorMapper,BinnedTicker
from colorcet import palette
color_mapper = EqHistColorMapper(palette=palette['fire'], low=1, high=2000)
ticker = BinnedTicker(mapper=color_mapper)
color_bar = ColorBar(color_mapper=color_mapper, location='center_left', orientation='vertical',
height=250, width=20, major_tick_line_color='black', ticker=ticker )
f = figure(width=500, height=500, toolbar_location=None, x_axis_type=None, y_axis_type=None)
f.add_layout(color_bar, 'right')
show(f)