Distribution Curve on Chart

I am trying to create a chart to show a Normal Distribution of station cycle times.
Using the tip from @JordanCClark in the below discussion I was able to produce this chart.
My main issue here is the X - axis, my data is in seconds and it is giving this whole time stamp. How can I remove that?

image

My query is:

SELECT Station, COUNT(Station) as CycleTime
FROM table
WHERE
Station > 15 AND Station < 106 AND
Date = CURDATE()

GROUP BY OP90
Order By OP90

Make a new X axis as a number type. The default is a Date type

2 Likes

I had to change the data set properties for both the X and Y axis. Within the 'Chart Customizer'.