[][src]Enum vega_lite_3::Sort

pub enum Sort {
    EncodingSortField(EncodingSortField),
    Enum(SortOrder),
    UnionArray(Vec<SelectionInitIntervalElement>),
}

Sort order for the encoded field.

For continuous fields (quantitative or temporal), sort can be either "ascending" or "descending".

For discrete fields, sort can be one of the following:

  • "ascending" or "descending" -- for sorting by the values' natural order in Javascript.
  • A sort-by-encoding definition for sorting by another encoding channel. (This type of sort definition is not available for row and column channels.)
  • A sort field definition for sorting by another field.
  • An array specifying the field values in preferred order. In this case, the sort order will obey the values in the array, followed by any unspecified values in their original order. For discrete time field, values in the sort array can be date-time definition objects. In addition, for time units "month" and "day", the values can be the month or day names (case insensitive) or their 3-letter initials (e.g., "Mon", "Tue").
  • null indicating no sort.

Default value: "ascending"

Note: null is not supported for row and column.

See also: sort documentation.

Variants

EncodingSortField(EncodingSortField)
Enum(SortOrder)

Trait Implementations

impl Clone for Sort[src]

impl Debug for Sort[src]

impl<'de> Deserialize<'de> for Sort[src]

impl From<EncodingSortField> for Sort[src]

impl From<SortOrder> for Sort[src]

impl From<Vec<SelectionInitIntervalElement>> for Sort[src]

impl Serialize for Sort[src]

Auto Trait Implementations

impl RefUnwindSafe for Sort

impl Send for Sort

impl Sync for Sort

impl Unpin for Sort

impl UnwindSafe for Sort

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.