/* * Copyright 2005 Joe Walker * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package jsx3.chart; import org.directwebremoting.ScriptBuffer; import org.directwebremoting.io.Context; /** * A column chart. Series: ColumnSeries only. Axes: Y axis must be value axis, X axis can be value or category axis The 'type' my be 'clustered', 'stacked', or 'stacked100', which correspond to the basic Excel-like variations of a column chart. * @author Joe Walker [joe at getahead dot org] * @author DRAPGEN - Dwr Reverse Ajax Proxy GENerator */ public class ColumnChart extends jsx3.chart.BCChart { /** * All reverse ajax proxies need context to work from * @param context The script that got us to where we are now */ public ColumnChart(Context context, String extension) { super(context, extension); } /** * The instance initializer. * @param name the GI name of the instance * @param left left position (in pixels) of the chart relative to its parent container * @param top top position (in pixels) of the chart relative to its parent container * @param width width (in pixels) of the chart * @param height height (in pixels) of the chart */ public ColumnChart(String name, int left, int top, int width, int height) { super((Context) null, (String) null); ScriptBuffer script = new ScriptBuffer(); script.appendCall("new ColumnChart", name, left, top, width, height); setInitScript(script); } }