Hello Jacob,
You can set the XAxis LayouMode to Between:
radChart.PlotArea.XAxis.LayoutMode = Telerik.Charting.Styles.ChartAxisLayoutMode.Between;
This way your bars will be fully visible. However keep in mind that there will be some empty space at the beginning and at the end of the line.
Regarding your other question, this feature is currently not supported. You can try setting secondary YAxis and define its MinValue, Maxvalue and Step, after setting the AutoScale to False.
For example:
line.YAxisType = ChartYAxisType.Secondary;
radChart.PlotArea.YAxis2.AutoScale = false;
radChart.PlotArea.YAxis2.AddRange(0, 150, 25);
Here you can find more information on how to use Secondary YAxis.
Greetings,
Peshito
the Telerik team
Register for the Q2 2011 What's New Webinar Week. Mark your calendar for the week starting July 18th and book your seat for a walk through of all the exciting stuff we will ship with the new release!