Hi there,
I want to ident my textblocks for the Y axis by tabs. That means I want to have a structure from the left side. It looks like followed:
Part 1
Part 1.1
Part 1.2
But this is not possible by crating textblocks and set the aligned position:
It causes an ident between axis line and text and not between chart border and text.
How could I solve my problem?
Thanks Simon
I want to ident my textblocks for the Y axis by tabs. That means I want to have a structure from the left side. It looks like followed:
Part 1
Part 1.1
Part 1.2
But this is not possible by crating textblocks and set the aligned position:
yAxis[0].TextBlock.Text = "Part 1"; |
yAxis[0].TextBlock.Appearance.Position.AlignedPosition = AlignedPositions.Left; |
yAxis[1].TextBlock.Text = "\tPart 1.1"; |
yAxis[1].TextBlock.Appearance.Position.AlignedPosition = AlignedPositions.Left; |
yAxis[2].TextBlock.Text = "\tPart 1.1"; |
yAxis[2].TextBlock.Appearance.Position.AlignedPosition = AlignedPositions.Left; |
How could I solve my problem?
Thanks Simon