/* SimplePieModel.java Purpose: Description: History: Thu Aug 14 11:20:14 2006, Created by henrichen Copyright (C) 2006 Potix Corporation. All Rights Reserved. {{IS_RIGHT This program is distributed under LGPL Version 2.1 in the hope that it will be useful, but WITHOUT ANY WARRANTY. }}IS_RIGHT */ package org.zkoss.zul; /** * A Pie chart data model implementation of {@link PieModel}. * Piechart model is an one series of (Category, value) data objects. * * @author henrichen * @see PieModel * @see Chart */ public class SimplePieModel extends SimpleSingleValueCategoryModel implements PieModel { private static final long serialVersionUID = 20091008183556L; }