Ejemplo n.º 1
0
	/**
	 *
	 * @param spacing   Spacing between top of the chart and the first label
	 * @return {@link com.db.chart.view.ChartView} self-reference.
	 */
	public ChartView setTopSpacing(float spacing){

		if(mOrientation == Orientation.VERTICAL)
			verController.topSpacing = spacing;
		else
			horController.borderSpacing = spacing;

		return this;
	}