AxesConfiguration constructor

AxesConfiguration({
  1. List<num> domain,
  2. dynamic tick,
})

Implementation

external factory AxesConfiguration(
    {List<num> /*Tuple of <num,num>*/ domain,
    dynamic
        /*{
		/**
		 * Show outer tick
		 */
		outer?: boolean;

		/**
		 * Set formatter for tick text
		 */
		format?: (this: Chart, x: string) => string;

		/**
		 * Set the number of y axis ticks
		 */
		count?: number;

		/**
		 * Set tick values manually
		 */
		values?: number|string|Date[];
	}*/
        tick});