'Label Studio Time Series

i'm working with Label Studio to label some time series data. I'm struggling to follow the documentation and i'd like to add some configurability, i'm unsure if it just works with normal HTML code or they have their own funcitons.

Here is my current code:

<View>
    
  <TimeSeries name="ts" valueType="url" value="$csv_url" timeColumn="seconds" units="1/4s" fixedScale="true">
    <Channel column="Rate1" fixedScale="true" legend="FHR" units="mph" strokeColor="#1f77b4"/>
    <Channel column="Rate1" fixedScale="true" legend="Rate1" units="mph" strokeColor="#e81010"/>
  </TimeSeries>

  <Header value="Classification:"/>
    <Choices name="Classification" toName="ts">
        <Choice value="Good"/>
        <Choice value="Ok"/>
        <Choice value="Bad"/>
    </Choices>
  
</View>

This works great, but i'd like to visualise my time series in set intervals of 10 minutes. Currently, it lets you zoom in / out which changes my x-axis view. Below is a picture of what it currently looks like, the blue circle shows the 10 minute window which i want to keep fixed (not variable like when i zoom in.)

Would appreciate any tips thanks!

enter image description here



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source