Bokeh Slider custom JS callback
问题 I am new to Bokeh and trying to implement a Slider callback using CustomJS. I have my sales data grouped by years, months, days. Based on the slider value(1-12), my monthly data has to be changed on the plot. Below is my code for this: Slider values(0-12)- Months numbers X-axis: Days(1-30) y-axis:Sales df3=df df3['Date2'] = pd.to_datetime(df['Inv Date']) df3.set_index('Date2', inplace=True) df3['month'] = df3.index.month df3['year'] = df3.index.year df3['day'] = df3.index.day df3['Dateday'] =