[Frontend] Mods to allow plot tick labels to ellipsis to left

open #337
Fixing code due to circleci fail in pull request;
This commit is contained in:
Charles Hacskaylo 2016-01-12 18:23:30 -08:00
parent a10f895904
commit f8114ba6b6

View File

@ -67,7 +67,7 @@ define(
tickVal = tickVal.split('').reverse().join('');
result.push({
//If data to show, display label for each tick line, otherwise show lines but suppress labels.
label: span > 0 ? : ''
label: span > 0 ? tickVal : ''
});
}