Basics

Guides

API Reference

Menu

Basics

Guides

API Reference

class: HsPixelMatrix

[1156:7] extends: Node, Region

HsPixelMatrix wraps HanSolo PixelMatrix.

Methods

  • HsPixelMatrix (Val = null)

    Creates a pixel matrix wrapper or a default matrix. @p Val is an optional existing Java PixelMatrix object.

class: charts

[12:14] static extends: object

HanSolo Charts helper functions and enum discovery for the fx.hansolo.charts module path.

Methods

  • enumNames (string EnumClass)

    Returns enum names for the provided Java enum class.

    • @p EnumClass is the fully qualified Java enum class name.
    • @r A list of strings with the enum member names.
  • enumValue (string EnumClass, string Name)

    Resolves the provided Java enum by string name.

    • @p EnumClass is the fully qualified Java enum class name.
    • @p Name is the enum member name.
    • @r An AussomJavaObject wrapping the enum value.
  • unwrap (Val)

    Converts a wrapper object or AJI object into its Java object.

    • @p Val is either a wrapper with .obj or an AussomJavaObject.
    • @r An AussomJavaObject.
  • unwrapList (list Items)

    Converts a list of wrappers or AJI objects into a Java ArrayList.

    • @p Items is a list of objects to convert.
    • @r An AussomJavaObject wrapping java.util.ArrayList.
  • unwrapArray (string ClassName, list Items)

    Converts a list of wrappers or AJI objects into a Java object array.

    • @p ClassName is the Java component class name.
    • @p Items is a list of objects to convert.
    • @r An AussomJavaObject wrapping the Java array.
  • axisTypes ()

    Returns the available axis types.

    • @r A list of AxisType enum names.
  • positions ()

    Returns the available chart positions.

    • @r A list of Position enum names.
  • symbols ()

    Returns the available chart symbols.

    • @r A list of Symbol enum names.
  • chartTypes ()

    Returns the available chart types used by XY series.

    • @r A list of ChartType enum names.
  • tickLabelOrientations ()

    Returns the available tick label orientations.

    • @r A list of TickLabelOrientation enum names.
  • streamFillModes ()

    Returns the available Sankey stream fill modes.

    • @r A list of SankeyPlot.StreamFillMode enum names.
  • orientations ()

    Returns the available JavaFX orientation names.

    • @r A list of Orientation enum names.
  • axisType (string Name)

    Resolves an axis type by name.

    • @p Name is an AxisType enum name.
    • @r An AussomJavaObject wrapping AxisType.
  • position (string Name)

    Resolves a chart position by name.

    • @p Name is a Position enum name.
    • @r An AussomJavaObject wrapping Position.
  • symbol (string Name)

    Resolves a chart symbol by name.

    • @p Name is a Symbol enum name.
    • @r An AussomJavaObject wrapping Symbol.
  • chartType (string Name)

    Resolves a chart type by name.

    • @p Name is a ChartType enum name.
    • @r An AussomJavaObject wrapping ChartType.
  • tickLabelOrientation (string Name)

    Resolves a tick label orientation by name.

    • @p Name is a TickLabelOrientation enum name.
    • @r An AussomJavaObject wrapping TickLabelOrientation.
  • streamFillMode (string Name)

    Resolves a Sankey stream fill mode by name.

    • @p Name is a SankeyPlot.StreamFillMode enum name.
    • @r An AussomJavaObject wrapping StreamFillMode.
  • orientation (string Name)

    Resolves a JavaFX orientation by name.

    • @p Name is an Orientation enum name.
    • @r An AussomJavaObject wrapping Orientation.
  • newXYSeries (list Items, string ChartType = "LINE", string Name = "Series")

    Creates an internal XYSeries object from a list of XY item wrappers.

    • @p Items is a list of HsXYChartItem objects.
    • @p ChartType is an optional HanSolo chart type name.
    • @p Name is the optional series name.
    • @r An AussomJavaObject wrapping XYSeries.

class: HsXYPane

[819:7] extends: Node, Region

HsXYPane wraps HanSolo XYPane.

CSS Classes

Scope CSS Classes
HanSolo XY pane Library XY pane styling is supplied by the HanSolo skin.
Inherited parent groups Region and Node styling still applies.

CSS Properties

Group Common Properties
Region -fx-background-color, -fx-border-color, -fx-padding, size properties.
Node -fx-opacity, -fx-rotate, -fx-translate-x, -fx-translate-y, -fx-managed, visibility.

Methods

  • HsXYPane (Val = null, string ChartType = "LINE", string Name = "Series")

    Creates an XY pane wrapper or a pane built from XY item wrappers.

    • @p Val is either an existing Java XYPane object or a list of HsXYChartItem objects.
    • @p ChartType is the optional HanSolo XY series chart type.
    • @p Name is the optional series name.
  • setChartBackground (object PaintObj)

    Sets the pane chart background paint.

    • @p PaintObj is a fx.Color or other JavaFX Paint wrapper.
    • @r this object for chaining
  • setBounds (double MinX, double MaxX, double MinY, double MaxY)

    Sets the pane bounds.

    • @p MinX is the minimum X bound.
    • @p MaxX is the maximum X bound.
    • @p MinY is the minimum Y bound.
    • @p MaxY is the maximum Y bound.
    • @r this object for chaining
  • setReferenceZero (bool Enabled)

    Sets whether the pane uses reference zero.

    • @p Enabled is true to enable reference zero.
    • @r this object for chaining
  • setCrossHairVisible (bool Visible)

    Sets whether crosshair text is visible.

    • @p Visible is true to show crosshair support.
    • @r this object for chaining

class: HsPlotItem

[676:7] extends: HsChartsObj

HsPlotItem wraps HanSolo PlotItem.

Methods

  • HsPlotItem (Val = null, double Value = 0.0, object FillObj = null)

    Creates a plot item wrapper or a new plot item.

    • @p Val is either an existing Java PlotItem object or the item name.
    • @p Value is the numeric value when creating a new item.
    • @p FillObj is an optional fx.Color object.
  • setFill (object ColorObj)

    Sets the item fill color.

    • @p ColorObj is a fx.Color object.
    • @r this object for chaining
  • setTextColor (object ColorObj)

    Sets the item text color.

    • @p ColorObj is a fx.Color object.
    • @r this object for chaining
  • addOutgoing (object PlotItemObj, double Value)

    Adds an outgoing Sankey connection.

    • @p PlotItemObj is another HsPlotItem object.
    • @p Value is the connection weight.
    • @r this object for chaining
  • setLevel (int Level)

    Sets the plot item hierarchy level used by Sankey layouts.

    • @p Level is the integer node level.
    • @r this object for chaining

class: HsLegendItem

[470:7] extends: HsChartsObj

HsLegendItem wraps HanSolo Charts LegendItem.

Methods

  • HsLegendItem (Val = null)

    Creates a legend item wrapper or a default legend item.

    • @p Val is an optional existing Java LegendItem object.

class: HsXYZChartItem

[660:7] extends: HsChartsObj

HsXYZChartItem wraps HanSolo XYZChartItem.

Methods

  • HsXYZChartItem (Val = null)

    Creates an XYZ item wrapper or a default item.

    • @p Val is an optional existing Java XYZChartItem object.

class: HsCoxcombChart

[1106:7] extends: HsItemChartBase

HsCoxcombChart wraps HanSolo CoxcombChart.

Methods

  • HsCoxcombChart (Val = null)

    Creates a coxcomb chart wrapper or a default chart. @p Val is an optional existing Java CoxcombChart object.

  • setItems (list Items)

    Sets the chart item list. @p Items is a list of HanSolo item wrappers. @r this object for chaining

class: HsStreamChart

[1279:7] extends: HsItemChartBase

HsStreamChart wraps HanSolo StreamChart.

Methods

  • HsStreamChart (Val = null)

    Creates a stream chart wrapper or a default chart. @p Val is an optional existing Java StreamChart object.

  • setItems (list Items)

    Sets the chart item list. @p Items is a list of HanSolo item wrappers. @r this object for chaining

class: HsXYChart

[1323:7] extends: Node, Region

HsXYChart wraps HanSolo XYChart.

CSS Classes

Scope CSS Classes
HanSolo XY chart Library XY chart styling is supplied by the HanSolo skin.
Inherited parent groups Region and Node styling still applies.

CSS Properties

Group Common Properties
Region -fx-background-color, -fx-border-color, -fx-padding, size properties.
Node -fx-opacity, -fx-rotate, -fx-translate-x, -fx-translate-y, -fx-managed, visibility.

Methods

  • HsXYChart (PaneObj = null, Axes = null, GridObj = null)

    Creates an XY chart wrapper from an existing Java object or from pane and axes.

    • @p PaneObj is either an existing Java XYChart object or an HsXYPane object.
    • @p Axes is a list of HsAxis objects when creating a new chart.
    • @p GridObj is an optional HsGrid object.
  • setTitle (string Title)

    Sets the chart title.

    • @p Title is the title text.
    • @r this object for chaining
  • setSubTitle (string Title)

    Sets the chart subtitle.

    • @p Title is the subtitle text.
    • @r this object for chaining
  • setReferenceZero (bool Enabled)

    Sets whether the chart references zero when possible.

    • @p Enabled is true to enable reference zero.
    • @r this object for chaining
  • addXYPane (object PaneObj)

    Adds another XY pane layer.

    • @p PaneObj is an HsXYPane object.
    • @r this object for chaining
  • refresh ()

    Forces a chart redraw.

    • @r this object for chaining

class: HsMatrixChartItem

[773:7] extends: HsChartsObj

HsMatrixChartItem wraps HanSolo MatrixChartItem.

Methods

  • HsMatrixChartItem (Val = null)

    Creates a matrix chart item wrapper or a default item.

    • @p Val is an optional existing Java MatrixChartItem object.

class: HsArcChart

[1006:7] extends: HsItemChartBase

HsArcChart wraps HanSolo ArcChart.

Methods

  • HsArcChart (Val = null)

    Creates an arc chart wrapper or a default chart. @p Val is an optional existing Java ArcChart object.

  • setItems (list Items)

    Sets the chart item list. @p Items is a list of HanSolo item wrappers. @r this object for chaining

class: HsSankeyPlot

[1196:7] extends: HsItemChartBase

HsSankeyPlot wraps HanSolo SankeyPlot.

CSS Classes

Scope CSS Classes
HanSolo Sankey plot Library Sankey styling is supplied by the HanSolo skin.
Inherited parent groups Region and Node styling still applies.

CSS Properties

Group Common Properties
Region -fx-background-color, -fx-border-color, -fx-padding, size properties.
Node -fx-opacity, -fx-rotate, -fx-translate-x, -fx-translate-y, -fx-managed, visibility.

Methods

  • HsSankeyPlot (Val = null)

    Creates a Sankey plot wrapper or a default chart.

    • @p Val is an optional existing Java SankeyPlot object.
  • setItems (list Items)

    Sets the plot item list.

    • @p Items is a list of HsPlotItem objects.
    • @r this object for chaining
  • addItem (object ItemObj)

    Adds one plot item.

    • @p ItemObj is an HsPlotItem object.
    • @r this object for chaining
  • removeItem (object ItemObj)

    Removes one plot item.

    • @p ItemObj is an HsPlotItem object.
    • @r this object for chaining
  • setStreamFillMode (string Name)

    Sets the stream fill mode by enum name.

    • @p Name is a SankeyPlot.StreamFillMode enum name.
    • @r this object for chaining
  • setUseItemColor (bool Enabled)

    Sets whether item colors are used for streams.

    • @p Enabled is true to use item colors.
    • @r this object for chaining

class: HsYPane

[905:7] extends: Node, Region

HsYPane wraps HanSolo YPane.

Methods

  • HsYPane (Val = null)

    Creates a Y pane wrapper or a default pane.

    • @p Val is an optional existing Java YPane object.

class: HsNestedBarChart

[1126:7] extends: HsItemChartBase

HsNestedBarChart wraps HanSolo NestedBarChart.

Methods

  • HsNestedBarChart (Val = null)

    Creates a nested bar chart wrapper or a default chart. @p Val is an optional existing Java NestedBarChart object.

  • setItems (list Items)

    Sets the chart item list. @p Items is a list of HanSolo item wrappers. @r this object for chaining

class: HsRadialTidyTree

[1174:7] extends: Node, Region

HsRadialTidyTree wraps HanSolo RadialTidyTree.

Methods

  • HsRadialTidyTree (Val = null)

    Creates a radial tidy tree wrapper or a default chart. @p Val is an optional existing Java RadialTidyTree object.

class: HsCandleChart

[1056:7] extends: HsItemChartBase

HsCandleChart wraps HanSolo CandleChart.

Methods

  • HsCandleChart (Val = null)

    Creates a candle chart wrapper or a default chart. @p Val is an optional existing Java CandleChart object.

  • setItems (list Items)

    Sets the chart item list. @p Items is a list of HanSolo candle item wrappers. @r this object for chaining

class: HsLegend

[454:7] extends: Node, Region

HsLegend wraps HanSolo Charts Legend.

CSS Classes

Scope CSS Classes
HanSolo legend Library legend styling is supplied by the HanSolo skin.
Inherited parent groups Region and Node styling still applies.

CSS Properties

Group Common Properties
Region -fx-background-color, -fx-border-color, -fx-padding, size properties.
Node -fx-opacity, -fx-rotate, -fx-translate-x, -fx-translate-y, -fx-managed, visibility.

Methods

  • HsLegend (Val = null)

    Creates a legend wrapper or a default legend instance.

    • @p Val is an optional existing Java Legend object.

class: HsPanelBarChart

[1136:7] extends: HsItemChartBase

HsPanelBarChart wraps HanSolo PanelBarChart.

Methods

  • HsPanelBarChart (Val = null)

    Creates a panel bar chart wrapper or a default chart. @p Val is an optional existing Java PanelBarChart object.

  • setItems (list Items)

    Sets the chart item list. @p Items is a list of HanSolo item wrappers. @r this object for chaining

class: HsConcentricRingChart

[1096:7] extends: HsItemChartBase

HsConcentricRingChart wraps HanSolo ConcentricRingChart.

Methods

  • HsConcentricRingChart (Val = null)

    Creates a concentric ring chart wrapper or a default chart. @p Val is an optional existing Java ConcentricRingChart object.

  • setItems (list Items)

    Sets the chart item list. @p Items is a list of HanSolo item wrappers. @r this object for chaining

class: HsAxis

[282:7] extends: Node, Region

HsAxis wraps HanSolo Charts Axis.

CSS Classes

Scope CSS Classes
HanSolo axis Library axis styling is supplied by the HanSolo skin.
Inherited parent groups Region and Node styling still applies.

CSS Properties

Group Common Properties
Region -fx-background-color, -fx-border-color, -fx-padding, size properties.
Node -fx-opacity, -fx-rotate, -fx-translate-x, -fx-translate-y, -fx-managed, visibility.

Methods

  • HsAxis (Val = null)

    Creates an axis wrapper or a default HanSolo axis.

    • @p Val is an optional existing Java Axis object.
  • setMinMax (double Min, double Max)

    Sets the numeric range for the axis.

    • @p Min is the minimum value.
    • @p Max is the maximum value.
    • @r this object for chaining
  • setTitle (string Title)

    Sets the axis title text.

    • @p Title is the title string.
    • @r this object for chaining
  • setUnit (string Unit)

    Sets the axis unit text.

    • @p Unit is the unit string.
    • @r this object for chaining
  • setType (string Name)

    Sets the axis type by enum name.

    • @p Name is an AxisType enum name.
    • @r this object for chaining
  • setOrientation (string Name)

    Sets the JavaFX orientation by enum name.

    • @p Name is an Orientation enum name.
    • @r this object for chaining
  • setPosition (string Name)

    Sets the axis position by enum name.

    • @p Name is a Position enum name.
    • @r this object for chaining
  • setTickLabelOrientation (string Name)

    Sets the tick label orientation by enum name.

    • @p Name is a TickLabelOrientation enum name.
    • @r this object for chaining
  • setCategories (list Categories)

    Sets the axis category labels.

    • @p Categories is a list of strings.
    • @r this object for chaining
  • setAxisColor (object ColorObj)

    Sets the axis line color.

    • @p ColorObj is a fx.Color object.
    • @r this object for chaining

class: HsPolarChart

[1164:7] extends: HsItemChartBase

HsPolarChart wraps HanSolo PolarChart.

Methods

  • HsPolarChart (Val = null)

    Creates a polar chart wrapper or a default chart. @p Val is an optional existing Java PolarChart object.

  • setItems (list Items)

    Sets the chart item list. @p Items is a list of HanSolo XY items. @r this object for chaining

class: HsCubeChart

[1116:7] extends: HsItemChartBase

HsCubeChart wraps HanSolo CubeChart.

Methods

  • HsCubeChart (Val = null)

    Creates a cube chart wrapper or a default chart. @p Val is an optional existing Java CubeChart object.

  • setItems (list Items)

    Sets the chart item list. @p Items is a list of HanSolo item wrappers. @r this object for chaining

class: HsGrid

[403:7] extends: Node, Region

HsGrid wraps HanSolo Charts Grid.

CSS Classes

Scope CSS Classes
HanSolo grid Library grid styling is supplied by the HanSolo skin.
Inherited parent groups Region and Node styling still applies.

CSS Properties

Group Common Properties
Region -fx-background-color, -fx-border-color, -fx-padding, size properties.
Node -fx-opacity, -fx-rotate, -fx-translate-x, -fx-translate-y, -fx-managed, visibility.

Methods

  • HsGrid (XAxis = null, YAxis = null)

    Creates a grid wrapper around an existing Java object or from two axes.

    • @p XAxis is either an existing Java Grid object or an HsAxis object.
    • @p YAxis is the Y axis when creating a new grid.
  • setGridOpacity (double Opacity)

    Sets the overall grid opacity.

    • @p Opacity is a double between 0 and 1.
    • @r this object for chaining
  • setGridLinePaint (object PaintObj)

    Sets one paint value for all grid lines.

    • @p PaintObj is a fx.Color or other JavaFX Paint wrapper.
    • @r this object for chaining

class: HsBubbleGridChartItem

[757:7] extends: HsChartsObj

HsBubbleGridChartItem wraps HanSolo BubbleGridChartItem.

Methods

  • HsBubbleGridChartItem (Val = null)

    Creates a bubble grid chart item wrapper or a default item.

    • @p Val is an optional existing Java BubbleGridChartItem object.

class: HsItemChartBase

[232:7] extends: Node, Region

Shared base helper for simple HanSolo charts that accept an item list.

Methods

  • setChartItems (list Items)

    Sets the chart item list from wrapper objects.

    • @p Items is a list of HanSolo item wrappers.
    • @r this object for chaining
  • addChartItem (object ItemObj)

    Adds a single item to the chart.

    • @p ItemObj is a wrapped HanSolo item object.
    • @r this object for chaining
  • removeChartItem (object ItemObj)

    Removes a single item from the chart.

    • @p ItemObj is a wrapped HanSolo item object.
    • @r this object for chaining

class: HsBoxPlot

[1036:7] extends: HsItemChartBase

HsBoxPlot wraps HanSolo BoxPlot.

Methods

  • HsBoxPlot (Val = null)

    Creates a box plot wrapper or a default chart. @p Val is an optional existing Java BoxPlot object.

  • setItems (list Items)

    Sets the chart item list. @p Items is a list of HanSolo item wrappers. @r this object for chaining

class: HsCandleChartItem

[741:7] extends: HsChartsObj

HsCandleChartItem wraps HanSolo CandleChartItem.

Methods

  • HsCandleChartItem (Val = null)

    Creates a candle chart item wrapper or a default item.

    • @p Val is an optional existing Java CandleChartItem object.

class: HsSunburstChart

[1289:7] extends: HsItemChartBase

HsSunburstChart wraps HanSolo SunburstChart.

Methods

  • HsSunburstChart (Val = null)

    Creates a sunburst chart wrapper or a default chart. @p Val is an optional existing Java SunburstChart object.

  • setItems (list Items)

    Sets the chart item list. @p Items is a list of HanSolo item wrappers. @r this object for chaining

class: HsBarChart

[951:7] extends: HsItemChartBase

HsBarChart wraps HanSolo BarChart.

CSS Classes

Scope CSS Classes
HanSolo bar chart Library chart styling is supplied by the HanSolo skin.
Inherited parent groups Region and Node styling still applies.

CSS Properties

Group Common Properties
Region -fx-background-color, -fx-border-color, -fx-padding, size properties.
Node -fx-opacity, -fx-rotate, -fx-translate-x, -fx-translate-y, -fx-managed, visibility.

Methods

  • HsBarChart (Val = null)

    Creates a bar chart wrapper or a default bar chart.

    • @p Val is an optional existing Java BarChart object.
  • setItems (list Items)

    Sets the chart item list.

    • @p Items is a list of HsChartItem objects.
    • @r this object for chaining
  • setOrientation (string Name)

    Sets the chart orientation by enum name.

    • @p Name is a JavaFX Orientation enum name.
    • @r this object for chaining
  • setTextFill (object ColorObj)

    Sets the chart text color.

    • @p ColorObj is a fx.Color object.
    • @r this object for chaining
  • setAnimated (bool Animated)

    Controls whether the chart animates updates.

    • @p Animated is true to animate.
    • @r this object for chaining

class: HsComparisonBarChart

[1076:7] extends: HsItemChartBase

HsComparisonBarChart wraps HanSolo ComparisonBarChart.

Methods

  • HsComparisonBarChart (Val = null)

    Creates a comparison bar chart wrapper or a default chart. @p Val is an optional existing Java ComparisonBarChart object.

  • setItems (list Items)

    Sets the chart item list. @p Items is a list of HanSolo item wrappers. @r this object for chaining

class: HsBoxPlots

[1046:7] extends: HsItemChartBase

HsBoxPlots wraps HanSolo BoxPlots.

Methods

  • HsBoxPlots (Val = null)

    Creates a box plots wrapper or a default chart. @p Val is an optional existing Java BoxPlots object.

  • setItems (list Items)

    Sets the chart item list. @p Items is a list of HanSolo item wrappers. @r this object for chaining

class: HsTreeNode

[789:7] extends: HsChartsObj

HsTreeNode wraps HanSolo TreeNode.

Methods

  • HsTreeNode (Val = null)

    Creates a tree node wrapper or a default node.

    • @p Val is an optional existing Java TreeNode object.

class: HsChartArea

[487:7] extends: HsChartsObj

HsChartArea wraps HanSolo's ChartArea interface when an existing Java object needs a named Aussom wrapper.

Methods

  • HsChartArea (Val)

    Wraps an existing ChartArea Java object.

    • @p Val is a Java ChartArea object.

class: HsChartItem

[501:7] extends: HsChartsObj

HsChartItem wraps HanSolo ChartItem.

Methods

  • HsChartItem (Val = null, double Value = 0.0)

    Creates a chart item wrapper or a new chart item.

    • @p Val is either an existing Java ChartItem object or the item name.
    • @p Value is the numeric value when creating a new item.
  • setName (string Name)

    Sets the item name.

    • @p Name is the item name.
    • @r this object for chaining
  • setValue (double Value)

    Sets the item numeric value.

    • @p Value is the numeric value.
    • @r this object for chaining
  • setFill (object ColorObj)

    Sets the item fill color.

    • @p ColorObj is a fx.Color object.
    • @r this object for chaining
  • setTextFill (object ColorObj)

    Sets the item text fill color.

    • @p ColorObj is a fx.Color object.
    • @r this object for chaining

class: HsCircularPlot

[1066:7] extends: HsItemChartBase

HsCircularPlot wraps HanSolo CircularPlot.

Methods

  • HsCircularPlot (Val = null)

    Creates a circular plot wrapper or a default chart. @p Val is an optional existing Java CircularPlot object.

  • setItems (list Items)

    Sets the chart item list. @p Items is a list of HanSolo plot items. @r this object for chaining

class: HsMatrixPane

[921:7] extends: Node, Region

HsMatrixPane wraps HanSolo MatrixPane.

Methods

  • HsMatrixPane (Val = null)

    Creates a matrix pane wrapper or a default pane.

    • @p Val is an optional existing Java MatrixPane object.

class: HsComparisonRingChart

[1086:7] extends: HsItemChartBase

HsComparisonRingChart wraps HanSolo ComparisonRingChart.

Methods

  • HsComparisonRingChart (Val = null)

    Creates a comparison ring chart wrapper or a default chart. @p Val is an optional existing Java ComparisonRingChart object.

  • setItems (list Items)

    Sets the chart item list. @p Items is a list of HanSolo item wrappers. @r this object for chaining

class: HsChartsObj

[217:7] extends: FxObj

Shared base helper for HanSolo value objects.

Methods

  • unwrap (Val)

    Unwraps a wrapper object or AJI object.

    • @p Val is either a wrapper with .obj or an AussomJavaObject.
    • @r An AussomJavaObject.

class: HsBubbleChart

[1016:7] extends: HsItemChartBase

HsBubbleChart wraps HanSolo BubbleChart.

Methods

  • HsBubbleChart (Val = null)

    Creates a bubble chart wrapper or a default chart. @p Val is an optional existing Java BubbleChart object.

  • setItems (list Items)

    Sets the chart item list. @p Items is a list of HanSolo item wrappers. @r this object for chaining

class: HsParallelCoordinatesChart

[1146:7] extends: HsItemChartBase

HsParallelCoordinatesChart wraps HanSolo ParallelCoordinatesChart.

Methods

  • HsParallelCoordinatesChart (Val = null)

    Creates a parallel coordinates chart wrapper or a default chart. @p Val is an optional existing Java ParallelCoordinatesChart object.

  • setItems (list Items)

    Sets the chart item list. @p Items is a list of HanSolo item wrappers. @r this object for chaining

class: HsBubbleGridChart

[1026:7] extends: HsItemChartBase

HsBubbleGridChart wraps HanSolo BubbleGridChart.

Methods

  • HsBubbleGridChart (Val = null)

    Creates a bubble grid chart wrapper or a default chart. @p Val is an optional existing Java BubbleGridChart object.

  • setItems (list Items)

    Sets the chart item list. @p Items is a list of HanSolo item wrappers. @r this object for chaining

class: HsSectorChart

[1259:7] extends: HsItemChartBase

HsSectorChart wraps HanSolo SectorChart.

Methods

  • HsSectorChart (Val = null)

    Creates a sector chart wrapper or a default chart. @p Val is an optional existing Java SectorChart object.

  • setItems (list Items)

    Sets the chart item list. @p Items is a list of HanSolo item wrappers. @r this object for chaining

class: HsYChart

[1395:7] extends: Node, Region

HsYChart wraps HanSolo YChart.

Methods

  • HsYChart (Val = null)

    Creates a Y chart wrapper or a default chart. @p Val is an optional existing Java YChart object.

class: HsXYZPane

[889:7] extends: Node, Region

HsXYZPane wraps HanSolo XYZPane.

Methods

  • HsXYZPane (Val = null)

    Creates an XYZ pane wrapper or a default pane.

    • @p Val is an optional existing Java XYZPane object.

class: HsValueChartItem

[562:7] extends: HsChartItem

HsValueChartItem wraps HanSolo ValueChartItem.

Methods

  • HsValueChartItem (Val = null, double Value = 0.0)

    Creates a value chart item wrapper or a new item.

    • @p Val is either an existing Java ValueChartItem object or the item name.
    • @p Value is the numeric value when creating a new item.

class: HsSpiderChart

[1269:7] extends: HsItemChartBase

HsSpiderChart wraps HanSolo SpiderChart.

Methods

  • HsSpiderChart (Val = null)

    Creates a spider chart wrapper or a default chart. @p Val is an optional existing Java SpiderChart object.

  • setItems (list Items)

    Sets the chart item list. @p Items is a list of HanSolo item wrappers. @r this object for chaining

class: HsWaffleChart

[1299:7] extends: HsItemChartBase

HsWaffleChart wraps HanSolo WaffleChart.

Methods

  • HsWaffleChart (Val = null)

    Creates a waffle chart wrapper or a default chart. @p Val is an optional existing Java WaffleChart object.

  • setItems (list Items)

    Sets the chart item list. @p Items is a list of HanSolo item wrappers. @r this object for chaining

class: HsXYChartItem

[583:7] extends: HsChartsObj

HsXYChartItem wraps HanSolo XYChartItem.

Methods

  • HsXYChartItem (Val = null, double Y = 0.0, string Name = "", object FillObj = null)

    Creates an XY item wrapper or a new XY item.

    • @p Val is either an existing Java XYChartItem object or the X value.
    • @p Y is the Y value when creating a new item.
    • @p Name is the optional item name.
    • @p FillObj is an optional fx.Color object.
  • setX (double Value)

    Sets the X value.

    • @p Value is the X value.
    • @r this object for chaining
  • setY (double Value)

    Sets the Y value.

    • @p Value is the Y value.
    • @r this object for chaining
  • setName (string Name)

    Sets the item name.

    • @p Name is the item name.
    • @r this object for chaining
  • setFill (object ColorObj)

    Sets the fill color.

    • @p ColorObj is a fx.Color object.
    • @r this object for chaining
  • setSymbol (string Name)

    Sets the item symbol by enum name.

    • @p Name is a Symbol enum name.
    • @r this object for chaining