We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e257de commit e6250a0Copy full SHA for e6250a0
test/jasmine/tests/axes_test.js
@@ -1860,7 +1860,12 @@ describe('Test axes', function() {
1860
describe('calcTicks and tickText', function() {
1861
function mockCalc(ax) {
1862
ax.tickfont = {};
1863
- Axes.setConvert(ax, {separators: '.,'});
+ Axes.setConvert(ax, {separators: '.,', _extraFormat: {
1864
+ year: '%Y',
1865
+ month: '%b %Y',
1866
+ dayMonth: '%b %-d',
1867
+ dayMonthYear: '%b %-d, %Y'
1868
+ }});
1869
return Axes.calcTicks(ax).map(function(v) { return v.text; });
1870
}
1871
0 commit comments