I m building a charts page using bokeh to plot them. I have some Line chart where I need to plot on x-axis the number of week of the year.
So this is the result that I m able to build:

As you can see there are some poin on X axis with 09/2023 and 10/2023 at last point.
It is possible to display only the point where are the values, like this?

This is the code I used to build this chart:
plotIndicatori = figure(plot_width=int(850), plot_height=int(165),
                               tools="pan,box_zoom,reset",
                               title=nomeIndicatore,
                            x_axis_type="datetime")
            plotIndicatori.toolbar.logo = None
            plotIndicatori.y_range.start = 0
            plotIndicatori.y_range.end = rangeMax + 5
            plotIndicatori.line(x='DateTime', y='Valore', color="navy", alpha=1, source=sourceIndicatori)
            plotIndicatori.circle(x='DateTime', y='Valore', color="navy", alpha=1, source=sourceIndicatori)
            # plotSfera.axis.visible = False
            plotIndicatori.xgrid.grid_line_color = None
            plotIndicatori.outline_line_color = background
            plotIndicatori.border_fill_color = background
            plotIndicatori.background_fill_color = background
 
    
