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.
-
hvega Graphics.Vega.VegaLite No marker to be shown.
-
hvega Graphics.Vega.VegaLite A transparent marker is used, which can be useful for interactive selections.
PName :: FieldName -> PositionChannelhvega Graphics.Vega.VegaLite Name of the field used for encoding with a position channel.
-
hvega Graphics.Vega.VegaLite Draw no title.
PNumber :: Double -> PositionChannelhvega 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.
PRepeat :: Arrangement -> PositionChannelhvega 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 ]
PRepeatDatum :: Arrangement -> PositionChannelhvega 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.
PScale :: [ScaleProperty] -> PositionChannelhvega 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] ]
-
hvega Graphics.Vega.VegaLite Use the same padding on all four edges of the container.
PSort :: [SortProperty] -> PositionChannelhvega Graphics.Vega.VegaLite Sort order for field when encoding with a position channel.