Hoogle Search

Within LTS Haskell 24.41 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. PMNone :: PointMarker

    hvega Graphics.Vega.VegaLite

    No marker to be shown.

  2. PMTransparent :: PointMarker

    hvega Graphics.Vega.VegaLite

    A transparent marker is used, which can be useful for interactive selections.

  3. PName :: FieldName -> PositionChannel

    hvega Graphics.Vega.VegaLite

    Name of the field used for encoding with a position channel.

  4. PNoTitle :: PositionChannel

    hvega Graphics.Vega.VegaLite

    Draw no title.

  5. PNumber :: Double -> PositionChannel

    hvega Graphics.Vega.VegaLite

    Set a position to an arbitrary value. Useful for placing items at the top of a plot area (PNumber 0) or a fixed number of pixels from the top. See also PHeight and PWidth. Use PDatum to place an item using a data coordinate.

  6. PRepeat :: Arrangement -> PositionChannel

    hvega Graphics.Vega.VegaLite

    Reference in a position channel to a field name generated by repeatFlow or repeat. The parameter identifies whether reference is being made to fields that are to be arranged in columns, in rows, or a with a flow layout. For example:

    enc =
    encoding
    . position X [ PRepeat Flow, PmType Quantitative ]
    
    spec =
    asSpec [ dataVals [], mark Tick [], enc [] ]
    
    toVegaLite
    [ repeatFlow [ "Horsepower", "Miles_per_Gallon", "Acceleration"]
    , specification spec
    ]
    

  7. PRepeatDatum :: Arrangement -> PositionChannel

    hvega Graphics.Vega.VegaLite

    Reference in a position channel to a datum value generated by repeatFlow or repeat. The parameter identifies whether reference is being made to a datum that is to be encoded in layers, or in columns or rows in a flow layout.

  8. PScale :: [ScaleProperty] -> PositionChannel

    hvega Graphics.Vega.VegaLite

    Scaling applied to a field when encoding with a position channel. The scale will transform a field's value into a position along one axis. For example, the following will scale the bars positioned along a horizontal axis to have an inner spacing of 50% (0.5) of the total space allocated to each bar:

    enc = encoding
    . position X [ PName "ageGroup"
    , PmType Nominal
    , PScale [SPaddingInner 0.5]
    ]
    
    

  9. PSize :: Double -> Padding

    hvega Graphics.Vega.VegaLite

    Use the same padding on all four edges of the container.

  10. PSort :: [SortProperty] -> PositionChannel

    hvega Graphics.Vega.VegaLite

    Sort order for field when encoding with a position channel.

Page 711 of many | Previous | Next