public class PieChartWidget extends ShaderWidget<PieChartWidget>
withCounts(int...)
and withColors(Color...)
methods, or region by region with repeated applications of withRegion(int, Color)
. The order the regions are rendered in the pie chart (counter-clockwise starting at the top right) is determined by the order they are inserted into this widget. You can update the count or color of a particular region if you know the index at which it was entered into the chart. When constructing the pie chart using the bulk methods, make sure you have the same number of colors as region counts (otherwise it is undefined behavior).height, shaderProgram, tex, width
hasInteractivity, hb, isHovered, leftClickStarted, onLeftClick, onMouseEnter, onMouseLeave, onRightClick, rightClickStarted
Constructor and Description |
---|
PieChartWidget(float width,
float height)
Constructs a new pie-chart that will render with the given width or height.
|
Modifier and Type | Method and Description |
---|---|
PieChartWidget |
clear()
Clears out all previously stored region sizes and colors.
|
protected void |
setUniforms() |
boolean |
updateRegionColor(int index,
com.badlogic.gdx.graphics.Color color)
Updates the color of the given region, if it exists.
|
boolean |
updateRegionCount(int index,
int count)
Updates the relative size of the given region, if it exists.
|
PieChartWidget |
withColors(com.badlogic.gdx.graphics.Color... colors)
Sets all colors in the pie chart at once.
|
PieChartWidget |
withCounts(int... counts)
Sets all counts in the pie chart at once.
|
PieChartWidget |
withRegion(int count,
com.badlogic.gdx.graphics.Color color)
Set the relative count and color of the next region in the pie chart.
|
getContentHeight, getContentWidth, renderTexture, renderWidget, withDimensions, withHeight, withWidth
anchoredAt, anchoredAt, anchoredAtClamped, anchoredAtClamped, anchoredCenteredOnMouse, anchoredCenteredOnMouse, anchoredCenteredOnMouseClamped, anchoredCenteredOnMouseClamped, anchoredCenteredOnScreen, anchoredCenteredOnScreen, cancelMovementQueue, cancelMovementQueueForAllChildren, delayedTranslate, getBottom, getContentBottom, getContentCenterX, getContentCenterY, getContentLeft, getContentRight, getContentTop, getHeight, getLeft, getRight, getTop, getWidth, hide, initializeInteractivity, isMouseInBounds, isMouseInContentBounds, leftMouseClick, mouseEnter, mouseLeave, onLeftClick, onMouseEnter, onMouseLeave, onRightClick, refreshAnchor, render, renderTopLevel, resolveMovementQueue, rightMouseClick, scaleHitboxToContent, setAllDelayedMovement, setChildrenDelayedMovement, show, toString, translate, update, updateInteractivity, updateWidget, withMargins, withMargins, withMargins
public PieChartWidget(float width, float height)
width
- the width of the widgetheight
- the height of the widgetpublic PieChartWidget withCounts(int... counts)
withCounts(1, 1)
will result in two regions each taking up exactly 50% of the final area. The order of the variadic list determines the order in which the regions are constructed. This function automatically clears out any previously existing counts, but will not clear out colors. This is intended to be used alongside withColors(Color...)
with the same number of arguments to each, and not doing so should be considered undefined behavior.counts
- a list of relative counts determining the size of each regionwithColors(Color...)
,
withRegion(int, Color)
public PieChartWidget withColors(com.badlogic.gdx.graphics.Color... colors)
withCounts(int...)
with the same number of parameters to each. The order in the variadic list determines the order rendered on the pie chart, going counter-clockwise from the top right.colors
- a list of colors for each regionwithCounts(int...)
,
withRegion(int, Color)
public PieChartWidget clear()
withRegion(int, Color)
mutators and wish to reset any previously added regions. The next withRegion(int, Color)
call after this function will be the first region in the chart.withRegion(int, Color)
public PieChartWidget withRegion(int count, com.badlogic.gdx.graphics.Color color)
etc.
. The first region constructed by this function will be the top right, with the remaining regions all relative to each other and proceeding counter-clockwise.count
- the relative size of this region (compared to other uses of this function)color
- the color for this regionclear()
,
withCounts(int...)
,
withColors(Color...)
public boolean updateRegionCount(int index, int count)
withCounts(int...)
) or the particular input function (e.g. withRegion(int, Color)
).index
- the zero-based index referring to the particular region to updatecount
- the new relative size of the regionpublic boolean updateRegionColor(int index, com.badlogic.gdx.graphics.Color color)
withCounts(int...)
) or the particular input function (e.g. withRegion(int, Color)
).index
- the zero-based index referring to the particular region to updatecolor
- the new color of the regionprotected void setUniforms()
setUniforms
in class ShaderWidget<PieChartWidget>