Reputation: 11
Right now I'm trying to update an hourly timeline chart to use the following horizontal axis format:
I've looked on stack overflow and at the google tutorials and have been unable to find any examples on how to do this. Does anybody know how to use two different formats on the same axis?
Here's the current Chart object:
<Chart
width="100%"
chartType="Timeline"
loader={<div>Loading Chart ...</div>}
data={[metaData, ...passes]}
options={{
title: "timeline chart",
height: ch*41+100,
hAxis: {
format: "EE HH:mm",
minValue: min,
maxValue: max,
}
}}
/>
How can I have different formats for different ticks on the chart's horizontal axis?
Upvotes: 1
Views: 471