Grafana timeseries to display based on specified dates

Can anyone please mention do we have an option to specify the particular dates in x axis for the timeseries irrespective of the time filter selected ,I need to showcase data between project startdate and enddate in line graph
for example : Data between (startdate)01-09-2022 to (enddate)01-02-2023

Welcome @sneha7243

What is your datasource? If using InfluxDB with Flux, the time can be explicitly hardcoded into the range() function. For example

from(bucket: "example-bucket")
    |> range(start: 2022-01-02T00:00:00Z, stop: 2022-01-09T00:00:00Z)

Hi, Datasource used is MySQL

Hi @sneha7243,
Maybe this link will help you:

Best regards,
ldrascic