Customizing Chart Style

From Documentation
Customizing Chart Style


Switching in Between Themes

ZK Charts provides many predefined color themes for you to use.


Here's a list of the themes in which you can choose from:

  • Default Theme
1     chart.setTheme(Theme.DEFAULT);

DefaultTheme.png

  • Grid Theme
1     chart.setTheme(Theme.GRID);

GridTheme.png

  • Skies Theme
1     chart.setTheme(Theme.SKIES);

SkiesTheme.png


  • Gray Theme
1     chart.setTheme(Theme.GRAY);

GrayTheme.png

  • Dark Blue Theme
1     chart.setTheme(Theme.DARK_BLUE);

DarkBlueTheme.png

  • Dark Green Theme
1     chart.setTheme(Theme.DARK_GREEN);

DarkGreenTheme.png

Customizing Colors

ZK Charts uses Color class to apply the color to the color-changing method in the option, such as setBackgroundColor() or setFillColor(). Color supports solid color and gradient color.

ZK Charts use the Color class to represent web color including solid or gradient. It can be applied to the configuration so that we can obtain a customized style.

Solid Color

Solid color can be specified as an RGB triplet, in hexadecimal format or any valid color format in browsers:

  • RGB triplet - rgb(186,86,150)
  • Hexadecimal format - #58BA7A

Gradient Color

Gradient is a smooth color transition from one color to another. In ZK Charts, gradient is defined by LinearGradient or RadialGradient, they have similar attributes to SVG[1].

Linear Gradient

Linear gradient contains attributes x1, y2, x2 and y2 to define the start and end position of the gradient. It can be assigned like below:

    // Create a linear gradient which x1=0, y1=0, x2 = 0, y2=1 with percentages represent values
    LinearGradient linearGradient2 = new LinearGradient(0, 0, 0, 1);

    // Create a linear gradient which x1=0, y1=0, x2 = 0, y2=300 with coordinate
    LinearGradient linearGradient2 = new LinearGradient(0, 0, 0, 300);

The stop attributes can be assigned as below:

   // Same as lineraGradient.addStop(0, "#EEEEEE"); lineraGradient.addStop(1, "#CCCCCC");
    lineraGradient.setsStop("#EEEEEE", "#CCCCCC");

For example, we can apply the linear gradient color to the series as below:

<div apply="ColorfulColumnChartComposer">
	<charts id="chart" type="column" width="480" height="300" title="Colorful Column Chart"/>
</div>
public class ColorfulColumnChartComposer extends SelectorComposer<Div> {
	@Wire
	Charts chart;

	public void doAfterCompose(Div comp) throws Exception {
		super.doAfterCompose(comp);
		
		CategoryModel model = new DefaultCategoryModel();
		model.setValue("1900", "Q1", new Integer(20));
		model.setValue("1900", "Q2", new Integer(55));
		model.setValue("1900", "Q3", new Integer(40));
		model.setValue("1900", "Q4", new Integer(75));

		chart.setModel(model);
		
		// remove grid line
		chart.getYAxis().setGridLineWidth(0);
		// remove y axis title
		chart.getYAxis().setTitle("");
		
		useGradientColor();	
	}
	
	private void useGradientColor() {
		LinearGradient gradient = new LinearGradient(0.5, 0, 0.5, 1);
		gradient.addStop(0, "#F1C40F");
		gradient.addStop(0.4, "#F1C40F");
		gradient.addStop(1, "#8E44AD");
		chart.getSeries().setColor(new Color(gradient));
	}
}

ColorfulColumnChartDemo.png

Radial Gradient

Radial gradient is similar to linear gradient, but it specifies the attributes to define the outermost circle instead of line position:

  // cx=0.4, cy=0.3, cr=0.6
  RadialGradient radialGradient = new RadialGradient(0.4, 0.3, 0.6);
  radialGradient.setStops("#EEEEEE", "#CCCCCC");

References

< Get Complete Source Code of This Book >


Last Update : 2014/04/18

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.