Yes, you can do both. For the first, give the first data set negative values, but use a
NumberFormatter to strip the minus sign; for the second, use the same ICU pattern as the hAxis.format option:
// create a format, then format the second and third columns and the hAxis
// the pattern is split into two subpatterns (';' is the separator):
// the first is the positive numbers, the second is negative numbers
// use the same pattern for both to make them appear the same (ie, without a minus sign)
var pattern = '#,###;#,###';
var formatter = new google.visualization.NumberFormat({pattern: pattern});
formatter.format(data, 1);
formatter.format(data, 2);
chart.draw(data, {
hAxis: {
format: pattern
}
});