sig
  class type t =
    object ('a)
      method callParent : 'Js.t -> 'Js.t Js.meth
      method callSuper : 'Js.t -> 'Js.t Js.meth
      method drawAxis : 'Js.t -> unit Js.meth
      method drawGrid : unit Js.meth
      method drawLabel : unit Js.meth
      method getInitialConfig :
        Js.js_string Js.t Js.optdef -> 'Js.t Js.meth
      method initConfig : 'Js.t -> 'Js.t Js.meth
      method self : Ext_Class.t Js.t Js.prop
      method setTitle : Js.js_string Js.t -> unit Js.meth
      method statics : Ext_Class.t Js.t Js.meth
    end
  class type configs =
    object
      method adjustEnd : bool Js.t Js.prop
      method dashSize : Js.number Js.t Js.prop
      method fields : Js.js_string Js.t Js.js_array Js.t Js.prop
      method grid : 'Js.t Js.prop
      method hidden : bool Js.t Js.prop
      method label : Ext_chart_Label.t Js.t Js.prop
      method length : Js.number Js.t Js.prop
      method majorTickSteps : Js.number Js.t Js.prop
      method minorTickSteps : Js.number Js.t Js.prop
      method position : Js.js_string Js.t Js.prop
      method title : Js.js_string Js.t Js.prop
      method width : Js.number Js.t Js.prop
    end
  class type events = object  end
  class type statics =
    object
      method addMembers : 'Js.t -> unit Js.meth
      method addStatics : 'Js.t -> 'Js.t Js.meth
      method create : 'Js.t Js.meth
      method createAlias : 'Js.t -> 'Js.t -> unit Js.meth
      method getName : Js.js_string Js.t Js.meth
    end
  val of_configs :
    Ext_chart_axis_Axis.configs Js.t -> Ext_chart_axis_Axis.t Js.t
  val to_configs :
    Ext_chart_axis_Axis.t Js.t -> Ext_chart_axis_Axis.configs Js.t
end