XTickConfiguration constructor

XTickConfiguration({
  1. bool centered,
  2. dynamic format,
  3. dynamic culling,
  4. num count,
  5. bool fit,
  6. dynamic values,
  7. num rotate,
  8. bool autorotate,
  9. bool outer,
  10. num width,
  11. bool multiline,
  12. bool tooltip,
  13. bool show,
  14. dynamic text,
  15. String type,
})

Implementation

external factory XTickConfiguration(
    {bool centered,
    dynamic /*String|String|num Function(num|DateTime)|String Function(num, String)*/ format,
    dynamic
        /*bool|{
		/**
		 * The number of tick texts will be adjusted to less than this value.
		 */
		max?: number;
	}*/
        culling,
    num count,
    bool fit,
    dynamic /*List<num>|List<String>|List<num> Function()*/ values,
    num rotate,
    bool autorotate,
    bool outer,
    num width,
    bool multiline,
    bool tooltip,
    bool show,
    dynamic
        /*{
		/**
		 * Set the x Axis tick text's position relatively its original position
		 */
		position?: {
			x?: number;
			y?: number;
		};

		/**
		 * Show or hide tick text
		 */
		show?: boolean;
	}*/
        text,
    String /*'indexed'|'log'|'timeseries'*/ type});