From 531cd203f387f8358a2e15da5f6171f5871ea688 Mon Sep 17 00:00:00 2001 From: James Moger Date: Wed, 20 Apr 2011 20:16:31 -0400 Subject: Support Markdown rendering. Use Wicket GoogleCharts from Maven. --- contrib/com/codecommit/wicket/ChartAxis.java | 83 ---------------------------- 1 file changed, 83 deletions(-) delete mode 100644 contrib/com/codecommit/wicket/ChartAxis.java (limited to 'contrib/com/codecommit/wicket/ChartAxis.java') diff --git a/contrib/com/codecommit/wicket/ChartAxis.java b/contrib/com/codecommit/wicket/ChartAxis.java deleted file mode 100644 index 641007c7..00000000 --- a/contrib/com/codecommit/wicket/ChartAxis.java +++ /dev/null @@ -1,83 +0,0 @@ -/* - * Created on Dec 11, 2007 - */ -package com.codecommit.wicket; - -import java.awt.Color; -import java.io.Serializable; - -/** - * @author Daniel Spiewak - */ -public class ChartAxis implements IChartAxis, Serializable { - - private static final long serialVersionUID = 1L; - - private AxisAlignment alignment; - private Color color; - private int fontSize = -1; - private String[] labels; - private double[] positions; - private Range range; - private ChartAxisType type; - - public ChartAxis(ChartAxisType type) { - this.type = type; - } - - public AxisAlignment getAlignment() { - return alignment; - } - - public Color getColor() { - return color; - } - - public int getFontSize() { - return fontSize; - } - - public String[] getLabels() { - return labels; - } - - public double[] getPositions() { - return positions; - } - - public Range getRange() { - return range; - } - - public ChartAxisType getType() { - return type; - } - - public void setAlignment(AxisAlignment alignment) { - this.alignment = alignment; - } - - public void setColor(Color color) { - this.color = color; - } - - public void setFontSize(int fontSize) { - this.fontSize = fontSize; - } - - public void setLabels(String[] labels) { - this.labels = labels; - } - - public void setPositions(double[] positions) { - this.positions = positions; - } - - public void setRange(Range range) { - this.range = range; - } - - public void setType(ChartAxisType type) { - this.type = type; - } -} -- cgit v1.2.3