00001 /******************************************************************************* 00002 * Copyright (c) 2008-2014 SWTChart project. All rights reserved. 00003 * 00004 * This code is distributed under the terms of the Eclipse Public License v1.0 00005 * which is available at http://www.eclipse.org/legal/epl-v10.html 00006 *******************************************************************************/ 00007 package org.swtchart; 00008 00012 public enum LineStyle { 00013 00015 NONE("None"), 00016 00018 SOLID("Solid"), 00019 00021 DASH("Dash"), 00022 00024 DOT("Dot"), 00025 00027 DASHDOT("Dash Dot"), 00028 00030 DASHDOTDOT("Dash Dot Dot"); 00031 00033 public final String label; 00034 00041 private LineStyle(String label) { 00042 this.label = label; 00043 } 00044 }