-
FlexPro
- At a Glance
- Features & Options
- Applications
- All Advantages
- What’s New in FlexPro 2021
- Try FlexPro For Free
- FlexPro View OEM Freeware
- Buying Guide
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
- Products
- News
- Support
- Company
- Contact
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
Home > Community > General > Zeilenumbruch in Achsenskalierung > Reply To: Zeilenumbruch in Achsenskalierung
February 8, 2023 at 8:36 am
#35240
Adrian 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