x-axis label is not shown at right place in ms chart using windows application
问题 problem: X-axis label is not show at the right place. i want below the x-axis and a dotted line to touch the x-axis label from every column bar. Please give ur comments. 回答1: I presume you want the X Axis labels to be placed below the chart area and not dangling in the center whereby you have the crossing set. In that case you can set it via Chart1.ChartAreas[0].AxisX.IsMarksNextToAxis = false; This should show the labels in the bottom position and not at the crossing. 来源: https:/