Uses of Class
com.arbergashi.charts.api.AxisConfig
Packages that use AxisConfig
Package
Description
Public API of the ArberCharts framework.
Swing UI components of the ArberCharts framework.
-
Uses of AxisConfig in com.arbergashi.charts.api
Methods in com.arbergashi.charts.api that return AxisConfigModifier and TypeMethodDescriptionstatic AxisConfigAxisScale.medical(double mmPerUnit) Creates an axis config for a medical-style scale (mm per unit).AxisConfig.medicalScale(double mmPerUnit) Convenience for medical/physical scaling.AxisConfig.setAutoScale(boolean autoScale) Enables or disables auto-scaling for this axis.AxisConfig.setFixedRange(double min, double max) Sets a fixed data range for the axis.AxisConfig.setInverted(boolean inverted) Sets whether this axis is inverted.AxisConfig.setLabelFormatPattern(String pattern) Sets the label format pattern for axis values.Sets the locale for the axis.AxisConfig.setRequestedTickCount(int count) Sets the requested tick count for this axis.AxisConfig.setShowGrid(boolean showGrid) Enables or disables grid rendering for this axis.AxisConfig.setTicks(int count) Alias forAxisConfig.setRequestedTickCount(int).AxisConfig.setUnitsPerPixel(Double unitsPerPixel) Sets the data units per pixel for a fixed physical scale (e.g., mm/s).AxisConfig.setUnitSuffix(String unitSuffix) Sets the unit suffix appended to formatted values.AxisScale.AxisPair.xAxis()Returns the value of thexAxisrecord component.AxisScale.AxisPair.yAxis()Returns the value of theyAxisrecord component.Method parameters in com.arbergashi.charts.api with type arguments of type AxisConfigModifier and TypeMethodDescriptionArberChartBuilder.xAxis(Consumer<AxisConfig> config) ArberChartBuilder.yAxis(Consumer<AxisConfig> config) Constructors in com.arbergashi.charts.api with parameters of type AxisConfigModifierConstructorDescriptionAxisPair(AxisConfig xAxis, AxisConfig yAxis) Creates an instance of aAxisPairrecord class. -
Uses of AxisConfig in com.arbergashi.charts.ui
Methods in com.arbergashi.charts.ui with parameters of type AxisConfigModifier and TypeMethodDescriptionArberChartPanel.withXAxisConfig(AxisConfig config) Configures the X-axis behavior and formatting.ArberChartPanel.withYAxisConfig(AxisConfig config) Configures the Y-axis behavior and formatting.