Timeseries - Multichannels should share the same fixed y-axis

Hi,

I would like to use 3 Multichannels within one Timeseries which share the same Y-Axis.

However for some reason I can not fix them all to the Y-Axis on the left.

Does anyone has an idea what to do?

Here is my code:

      <!-- Time series data visualization -->
    <TimeSeries name="coolDown" valueType="url" value="$csv" sep="," timeColumn="Timestamp" timeFormat="%Y-%m-%dT%H:%M:%S" timeDisplayFormat="%Y-%m-%d %H:%M:%S" overviewChannels="Temp">
         <MultiChannel fixedScale="true">  

         <Channel column="Temp" displayFormat=",.1f" strokeColor="#ff7f0e" legend="Temp"/>
         <Channel column="Internal_temp" displayFormat=",.1f" strokeColor="#1f77b4" legend="Internal_temp"/>
      <Channel column="Temp2" units="%" displayFormat=",.1f" strokeColor="#FF0000" legend="Temp2" />
     </MultiChannel>

         </TimeSeries>

This is the output:

As I have 3 temperatures, I would prefer that they share the same axis.

Does anyone have an idea what to do?

Label Studio Version: v1.20.0

Have you tried using fixedScale="true" in the TimeSeries tag?

Also, you can try it on Channel tags too.

Yes, I tried it, but it still does not work.

My code including fixedScale=”true”:

<TimeSeries name="coolDown" valueType="url" value="$csv" sep="," timeColumn="Timestamp" timeFormat="%Y-%m-%dT%H:%M:%S" timeDisplayFormat="%Y-%m-%d %H:%M:%S" overviewChannels="Temp" fixedScale="true">

<MultiChannel>  

<Channel column="Temp" displayFormat=",.1f" strokeColor="#ff7f0e" legend="Temp"/>

<Channel column="Internal_temp" displayFormat=",.1f" strokeColor="#1f77b4" legend="Internal_temp"/>

<Channel column="Temp2" displayFormat=",.1f" strokeColor="#FF0000" legend="Temp2" />

</MultiChannel>
</TimeSeries>

What it looks like:

There are still 2 Axis and scaling is different for all 3 graphs. :frowning: