Thank You, this was helpfull. So in the moment ther ist just a scripting solution.
SendToReport(
Dispatch(
{},
"Graph Builder",
FrameBox(1),
DispatchSeg(BarSeg(1), Set Font("", 12, "", 90))
),
Dispatch(
{},
"Graph Builder",
FrameBox(2),
DispatchSeg(BarSeg(1), Set Font("", 12, "", 90))
)
),
You can add this to the Sript and it works
12 - Size
90 - Angel
If I save the Script it looks like this (for an Other diagramm with more lins)
SendToReport(
Dispatch( {}, "Graph Builder", FrameBox( 3 ),
{DispatchSeg( BarSeg( 1 ), {Font( Size( 12 ), Angle( 90 ) )} )}
),
Dispatch( {}, "Graph Builder", FrameBox( 4 ),
{DispatchSeg( BarSeg( 1 ), {Font( Size( 12 ), Angle( 90 ) )} )}
),
Dispatch( {}, "Graph Builder", FrameBox( 5 ),
{DispatchSeg( BarSeg( 1 ), {Font( Size( 10 ), Angle( 90 ) )} )}
)
)