KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > birt > chart > examples > api > script > java > SeriesTitleScript


1 /*******************************************************************************
2  * Copyright (c) 2004 Actuate Corporation.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * Actuate Corporation - initial API and implementation
10  *******************************************************************************/

11
12 package org.eclipse.birt.chart.examples.api.script.java;
13
14 import org.eclipse.birt.chart.model.component.Label;
15 import org.eclipse.birt.chart.model.component.Series;
16 import org.eclipse.birt.chart.script.ChartEventHandlerAdapter;
17 import org.eclipse.birt.chart.script.IChartScriptContext;
18
19 public class SeriesTitleScript extends ChartEventHandlerAdapter
20 {
21
22     /*
23      * (non-Javadoc)
24      *
25      * @see org.eclipse.birt.chart.script.IChartItemScriptHandler#beforeDrawSeriesTitle(org.eclipse.birt.chart.model.component.Series,
26      * org.eclipse.birt.chart.model.component.Label,
27      * org.eclipse.birt.chart.script.IChartScriptContext)
28      */

29     public void beforeDrawSeriesTitle( Series series, Label label,
30             IChartScriptContext icsc )
31     {
32         label.setVisible( true );
33         label.getCaption( ).setValue( "Cities" ); //$NON-NLS-1$
34
label.getCaption( ).getColor( ).set( 222, 32, 182 );
35         series.getLabel( ).getCaption( ).getColor( ).set( 12, 232, 182 );
36     }
37
38 }
39
Popular Tags