I'm looking to get the hAxis information I currently have to display both on the top and bottom of a bar char (as it could be a large chart!)
The chart currently looks like this (the data is fake by the way! The labels on the side have been 'redacted'): <https://lh3.googleusercontent.com/-i4pGCfdhjCk/WbvOtzmSm9I/AAAAAAAAAak/yBHcwcTMOBUpD_c4XWP-JMp7GNyGEB09ACLcBGAs/s1600/Screen%2BShot%2BGoogle%2BChart.png> Essentially I just want the -2m to +2m labels to show on the top as well. Here's the code: var chartHeight = (data.getNumberOfRows() * 20) + 100; var options = { height: chartHeight, titlePosition: 'none', chartArea: {width: '50%', height: chartHeight-60}, bar: {groupWidth: "75%"}, isStacked: true, fontSize: 12, legend: { position: "none" }, hAxis: { title: '{!$amount} ({!selectedCurrency})', viewWindow: { min: {!minVal}, max: {!maxVal} }, ticks: [{!minVal},-{!tick},0,{!tick},{!maxVal}] } }; I've attempted to use multiple series, but as there is only one data series, with negative and positive figures, it didn't seem to work. I may be overcomplicating this, so all suggestions welcome! -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-visualization-api. To view this discussion on the web visit https://groups.google.com/d/msgid/google-visualization-api/53845782-0ca7-4099-a395-bad31e79c9b4%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
