Beispiel #1
0
	/**
	 * Set spacing between Labels and Axis. Will be applied to both X and Y.
	 *
	 * @param spacing   Spacing between labels and axis
	 * @return {@link com.db.chart.view.ChartView} self-reference.
	 */
	public ChartView setAxisLabelsSpacing(float spacing){

		horController.setAxisLabelsSpacing(spacing);
		verController.setAxisLabelsSpacing(spacing);
		return this;
	}