Print Serial Data in One Row on Serial Monitor

Hi, arduino software is has serial monitor feature. Can i display serial data just in one row? Because if my code is like this:

Serial.print(pitchGyro);
  Serial.print("\t");
  Serial.print(pitchAccel);
  Serial.print("\t");
  Serial.print(pitchPrediction);
  Serial.print("\t"); 
  Serial.print(rollGyro);
  Serial.print("\t");
  Serial.print(rollAccel);
  Serial.print("\t");
  Serial.print(rollPrediction);
  Serial.print("\n");

Every serial data will displayed in new row, how if i want to display serial data just in one row? So, the change of data value can be observed in a single row.

Thank You..

No, you cannot.

Unfortunately.

The normal way of doing it is to use the sequence "\r" as your line ending - this is "carriage return" and would return the cursor to the start of the current line allowing you to overwrite the existing data on the screen.

However, the serial monitor completely ignores the "\r" sequence.

You can do it by using some other terminal program instead of the serial monitor, such as tera term, or putty, etc, and using "\r".