Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
255
categoryDateTimeX Axis with fix min and max values
posted

I'd like to add an own xAxis to the chart with minimum and maximum datetime values. This code doesn't show up any axes:

 $("#chart").igDataChart("option""axes", [{
            name: "xAxis",
            type: "categoryDateTimeX",
            minimumValue: new Date(2013022000000000),
            maximumValue: new Date(2013022300000000),
            label: 'label'
        }]);
How should I manage this to work?
Thanks, Peter