@@ -473,8 +473,27 @@ type Chart =
473473 |> TraceStyle.Line( ?Width= Width,? Color= Color,? Dash= Dash,? Colorscale= Colorscale)
474474 |> GenericChart.ofTraceObject
475475
476+ ///Parallel categories diagram for multidimensional categorical data.
477+ static member ParallelCategories ( dims : seq < 'key * #seq < 'values >>,? Range ,? Constraintrange ,? Color ,? Colorscale ,? Width ,? Dash ,? Domain ,? Labelfont ,? Tickfont ,? Rangefont ) =
478+ let dims ' =
479+ dims |> Seq.map ( fun ( k , vals ) ->
480+ Dimensions.init( vals)
481+ |> Dimensions.style( vals,? Range= Range,? Constraintrange= Constraintrange, Label= k)
482+ )
483+ Trace.initParallelCategories (
484+ TraceStyle.ParallelCategories( Dimensions= dims',? Domain= Domain,? Labelfont= Labelfont,? Tickfont= Tickfont,? Rangefont= Rangefont)
485+ )
486+ |> TraceStyle.Line( ?Width= Width,? Color= Color,? Dash= Dash,? Colorscale= Colorscale)
487+ |> GenericChart.ofTraceObject
488+
489+ static member ParallelCategories ( dims : seq < Dimensions >,? Color ,? Colorscale ,? Width ,? Dash ,? Domain ,? Labelfont ,? Tickfont ,? Rangefont ) =
490+ Trace.initParallelCategories (
491+ TraceStyle.ParallelCoord ( Dimensions= dims,? Domain= Domain,? Labelfont= Labelfont,? Tickfont= Tickfont,? Rangefont= Rangefont)
492+ )
493+ |> TraceStyle.Line( ?Width= Width,? Color= Color,? Dash= Dash,? Colorscale= Colorscale)
494+ |> GenericChart.ofTraceObject
476495
477- /// Computes the choropleth map plot
496+ /// Computes the choropleth map plot
478497 static member ChoroplethMap ( locations , z ,? Text ,? Locationmode ,? Autocolorscale ,? Colorscale ,? Colorbar ,? Marker ,? Zmin ,? Zmax ) =
479498 Trace.initChoroplethMap (
480499 TraceStyle.ChoroplethMap ( Locations= locations, Z= z,? Text= Text,? Locationmode= Locationmode,? Autocolorscale= Autocolorscale,
0 commit comments