FlexPro Forum – Discuss Your Topic!

Zeilenumbruch in Achsenskalierung

Home > Community > General > Zeilenumbruch in Achsenskalierung

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #35237
    Markus JanssenMarkus Janssen
    Participant

    Hallo,

    kann man bei einer Achsenskalierung auch Zeilenumbrüche einfügen?
    Es dreht sich bei mir um Kalenderzeit, ich möchte Datum und Uhrzeit untereinander anordnen.

     

    Grüße

    #35240
    Adrian GiurcaAdrian Giurca
    Moderator

    Hi,

    you can use the “Division labeling using a data series, signal or function”.

    Create a formula newX that will return a data series filled with Date and Time separated by line breaks:

    Dim xSig = YourSignal.X
    Dim sDate = Format("%.0(%x)", xSig)
    Dim sTime = Format("%.0(%X)", xSig)
    Dim newX = StringConcat(sDate, "\n  ", sTime)

    This newX will be used in your diagram -> Axes -> x Axis 1 -> Division Labeling -> Customize -> Division labeling using a data series, signal or function.

    BR

    #35249
    Markus JanssenMarkus Janssen
    Participant

    Thx Adrian.
    This worked for me.

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.