Uses of Class
com.oorian.chartjs.CjDataset
Packages that use CjDataset
-
Uses of CjDataset in com.oorian.chartjs
Methods in com.oorian.chartjs that return CjDatasetModifier and TypeMethodDescriptionCjDataset.addData(CjDataPoint point) Adds a single data point.Adds a single data value.static CjDatasetCreates a bar chart dataset.static CjDatasetCreates a line chart dataset.static CjDatasetCreates a pie chart dataset.static CjDatasetCjDataset.scatter(String label, CjDataPoint... points) Creates a scatter chart dataset.CjDataset.setBackgroundColor(String... colors) Sets background color(s).CjDataset.setBackgroundColors(String... colors) Sets individual background colors for each data point.CjDataset.setBackgroundColors(List<String> colors) Sets individual background colors from a list.CjDataset.setBarPercentage(double percentage) Sets the bar percentage (width relative to category).CjDataset.setBarThickness(int thickness) Sets the bar thickness in pixels.CjDataset.setBorderColor(String color) Sets a single border color.CjDataset.setBorderColors(String... colors) Sets individual border colors for each data point.CjDataset.setBorderRadius(int radius) Sets the border radius for bars.CjDataset.setBorderSkipped(String skip) Sets which border to skip.CjDataset.setBorderWidth(int width) Sets the border width.CjDataset.setCategoryPercentage(double percentage) Sets the category percentage.CjDataset.setCircumference(int degrees) Sets the arc circumference in degrees.Sets the cutout percentage for doughnut charts.Sets the data values.Sets the data values from a list.CjDataset.setDataPoints(CjDataPoint... points) Sets data points for scatter/bubble charts.CjDataset.setDataPoints(List<CjDataPoint> points) Sets data points from a list.CjDataset.setFill(boolean fill) Sets whether to fill the area under the line.Sets the fill mode for the area chart.CjDataset.setHidden(boolean hidden) Sets whether this dataset is hidden.CjDataset.setHoverOffset(int pixels) Sets the hover offset for arcs.Sets the dataset label.CjDataset.setMaxBarThickness(int thickness) Sets the maximum bar thickness.CjDataset.setOffset(int pixels) Sets the offset for all arcs.CjDataset.setOrder(int order) Sets the drawing order for this dataset.CjDataset.setPointBackgroundColor(String color) Sets the point background color.CjDataset.setPointBorderColor(String color) Sets the point border color.CjDataset.setPointHoverRadius(int radius) Sets the point hover radius.CjDataset.setPointRadius(int radius) Sets the point radius.CjDataset.setPointStyle(PointStyle style) Sets the point style.CjDataset.setRotation(int degrees) Sets the rotation offset in degrees.CjDataset.setShowLine(boolean showLine) Sets whether to show the line (for scatter charts with lines).CjDataset.setSpacing(int pixels) Sets the spacing between arcs.CjDataset.setStepped(boolean stepped) Sets whether to use stepped lines.CjDataset.setTension(double tension) Sets the bezier curve tension (smoothness).Methods in com.oorian.chartjs that return types with arguments of type CjDatasetModifier and TypeMethodDescriptionCjChart.getDatasets()Gets the datasets.CjChartData.getDatasets()Gets the datasets.Methods in com.oorian.chartjs with parameters of type CjDatasetModifier and TypeMethodDescriptionCjChart.addDataset(CjDataset dataset) Adds a dataset to the chart.CjChartData.addDataset(CjDataset dataset) Adds a dataset to the chart.Method parameters in com.oorian.chartjs with type arguments of type CjDatasetModifier and TypeMethodDescriptionCjChart.setDatasets(List<CjDataset> datasetList) Sets all datasets at once.CjChartData.setDatasets(List<CjDataset> datasetList) Sets all datasets at once.