Skip to content

Commit

Permalink
system-monitor-graph@rcassani: Reorder setting label's text, style an…
Browse files Browse the repository at this point in the history
…d position (#1207)

* Fixes #1100
  • Loading branch information
rcassani committed Jun 24, 2024
1 parent 7f4f2ed commit e9505f8
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -325,21 +325,21 @@ SystemMonitorGraph.prototype = {
return false;
});

// text position and content
// labels: set text, style and position
this.text1.set_text(text1);
this.text1.style = "font-size: " + text1_size + "px;"
+ "color: " + this.text_color + ";";
this.text1.set_position(
Math.round(unit_size),
Math.round((2.5 * unit_size) - this.text1.get_height())
);
this.text1.set_text(text1);
this.text1.style = "font-size: " + text1_size + "px;"
this.text2.set_text(text2);
this.text2.style = "font-size: " + text2_size + "px;"
+ "color: " + this.text_color + ";";
this.text2.set_position(
Math.round(this.text1.get_width() + (2 * unit_size)),
Math.round((2.5 * unit_size) - this.text2.get_height())
);
this.text2.set_text(text2);
this.text2.style = "font-size: " + text2_size + "px;"
+ "color: " + this.text_color + ";";
this.text3.set_text(text3);
this.text3.style = "font-size: " + text3_size + "px;"
+ "color: " + this.text_color + ";";
Expand Down

0 comments on commit e9505f8

Please sign in to comment.