I have line chart with 2 y axes (valueAxis) representing centimeters and inches. It's important that they align so that the cm value on one is equivalent to the inch value on the other. I have given the cm axis a min of 28 and a max of 55. This means the inch axis would have a min of 11.02 and a max of 21.65. But I want the inch axis to be labeled only on ticks representing whole numbers. Is there a way to do this? I've tried setting the label.skip to 1 and label.majorUnit to .98 so the first label would be at 12. I then created and label.visual function where I modified the label.majorUnit to 1 so the next label would be 13, but this didn't work. It ended up skipping the 13 and labeled the rest with decimals, which was confusing. I've tried a lot of things along these lines. Any suggestions? Thanks.