StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
StackGenVis/frontend/node_modules/vue-slider-component/src/pages/Api/Events.md

1.3 KiB

Events

change

  • Type: (value) => void

  • Arguments:

    • {number | string | number[] | string[]} value
  • Usage:

    The event that is triggered when the value changes.

drag-start

  • Type: () => void

  • Usage:

    The event that is triggered when the mouse/finger presses the slider.

dragging

  • Type: (value) => void

  • Arguments

    • {number | string | number[] | string[]} value
  • Usage:

    The event that is triggered when the slider is dragged.

    value is the value inside the component, and the internal value can be obtained when lazy = true.

drag-end

  • Type: () => void

  • Usage:

    Drag and drop the event that triggered.

error

  • Type: (type, message) => void

  • Arguments

    • {ERROR_TYPE} type Error type

    • {string} message Error message

      enum ERROR_TYPE {
        VALUE = 1, // Value is illegal
        INTERVAL = 2, // `interval` cannot be divisible by `(max - min)`
        MIN, // Value is less than min
        MAX, // Value is greater than max
        ORDER, // When `order` is false, `minRange/maxRange/enableCross/fixed` is still set
      }
    
  • Usage:

    Event triggered when an error occurs in a component

  • See also: The <input> linkage