Doesn't redim.range limit the display

I want to get raster data only within the range I redimmed… ((3560347 , 5083335),y=( 4574425, 5096916 ) ). But it displays whole rasterized points.
Doesn’t redim.range limit the display. What am I doing wrong?

geo0 = df0.hvplot('x', 'y', color='red', kind='points', hover_cols=['Date', 'Mag','Derinlik' ],width=1000,height=int(1000/ratio),size=1, xlim=(2560347 , 5283335),ylim=( 4074425,  5296916  ), tiles=self.Altlık_Harita).opts(framewise=True)
  
points=filtered_subrange_04.hvplot.points('x', 'y',frame_height=int(1000/ratio),frame_width=1000).opts(framewise=True).redim.range(x=(3560347 , 5083335),y=( 4574425,  5096916 ))
geo_04 =dynspread( rasterize(points).opts(**ropts))
return geo0*geo_04

regards