A couple of things we would like changed on the graphs.
For the sprint times graph, we would like the Y-axis to go up by increments of 0.25 seconds because the times for these sprints are not going to exceed 15 seconds.
Secondly, for the jumps graph, we would like the y-axis to go up by 2 inch increments as the jumps are not going to be higher than 40inches ever.
How do I get the yaxis increments to be customized as well as the min and mix I figured by am using code behind for this. I see interval is that the correct thing to use in this case.
performanceChart.PrimaryAxis = new NumericalAxis
{
// To set Y-Axis start value to 0
Minimum = 0,
// To set Y-Axis end value to 15 seconds
Maximum = 15
};
Also long the bottom it says months is their any way to show seconds for the label for the yaxis