After making an API call, I received data for a Highcharts graph consisting of an array of datetimes (in milliseconds) and corresponding values (yAxis). The data is fetched every 15 minutes and displayed on a mobile device. When viewing the data monthly, I realized there are too many datapoints to effectively visualize (4*24*30). I am interested in only visualizing one datapoint per day, which would be an average of those 4 quarters * 24 datapoints. I have tried various xAxis options such as minRange, minTickInterval, tickAmount, and tickInterval without success. Are there any other suggestions?