Commit d41d8634 authored by Masayuki Tanaka's avatar Masayuki Tanaka

Fix axis.x.min/max when Date object - #171

parent f05c08c8
......@@ -178,8 +178,8 @@
__axis_x_tick_fit = getConfig(['axis', 'x', 'tick', 'fit'], true),
__axis_x_tick_values = getConfig(['axis', 'x', 'tick', 'values'], null),
__axis_x_tick_rotate = getConfig(['axis', 'x', 'tick', 'rotate']),
__axis_x_max = getConfig(['axis', 'x', 'max']),
__axis_x_min = getConfig(['axis', 'x', 'min']),
__axis_x_max = getConfig(['axis', 'x', 'max'], null),
__axis_x_min = getConfig(['axis', 'x', 'min'], null),
__axis_x_padding = getConfig(['axis', 'x', 'padding'], {}),
__axis_x_height = getConfig(['axis', 'x', 'height']),
__axis_x_default = getConfig(['axis', 'x', 'default']),
......
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment