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 00009 import org.eclipse.swt.graphics.Color; 00010 00014 public interface IGrid { 00015 00021 Color getForeground(); 00022 00029 void setForeground(Color color); 00030 00036 LineStyle getStyle(); 00037 00044 void setStyle(LineStyle style); 00045 }