私は、毎月の進捗状況を示す現金温度計の作成に取り組んでいます。私はSVGテキストの折り返しに問題があり、いくつかの助けを使うことができます。アニメーションとそれ以外はすべて設定されていますが、テキストを適切に折り返すことはできません。これに関する助けがあれば大いに感謝します。以下は私のコードへのJSフィドルリンクです。テキストが途切れて正しく表示されないことがわかります。SVGテキストの折り返し
https://jsfiddle.net/corcorancr/4pto1wm5/1/
//-- Draw Goal line
if (this.currentProgress >= this.currentGoal) {
this.drawTick(maxTemp, "Goal of " + this.currentGoal + " Reached! " + this.currentProgress + " receieved!", "Black", 0, width, tubeWidth, tubeBorderColor, scale, svg);
} else {
this.drawTick(maxTemp + 3, "Goal: " + this.currentGoal, "black", 0, width, tubeWidth, "Black", scale, svg);
this.drawTick(percentageOfGoal, "Current: " + this.currentProgress, this.getMercuryColor(t), 0, width, tubeWidth, tubeBorderColor, scale, svg);
}
あなたが送信されたリンクを再投稿してくださいでした。投稿されたものは変更のないオリジナルのコードです。ありがとうございました – Corcorancr
私のリンクを編集しました、再確認してください –