All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.scudata.cellset.graph.draw.Draw2YColLine Maven / Gradle / Ivy

Go to download

SPL(Structured Process Language) A programming language specially for structured data computing.

There is a newer version: 20240823
Show newest version
package com.scudata.cellset.graph.draw;

/**
 * ˫??????ͼ??ʵ??
 * @author Joancy
 *
 */
public class Draw2YColLine extends DrawBase {
	
	/**
	 * ʵ?ֻ?ͼ????
	 */
	public void draw(StringBuffer htmlLink) {
		drawing(this, htmlLink);
	}

	/**
	 * ???ݻ?ͼ????db??ͼ????????ͼ??ij????Ӵ???htmlLink
	 * @param db ????Ļ?ͼ????
	 * @param htmlLink ?????ӻ???
	 */
	public static void drawing(DrawBase db,StringBuffer htmlLink) {
//		ê?????غ?ʱ??˭??ǰ?棬????????ҵ?˭?????ڵ?С???????ê?????????ǰ?档 xq 2017??11??13??
		StringBuffer colLink = new StringBuffer();
		int serNum = DrawCol.drawing(db,colLink);
		if(serNum<0) return;

//		˫??????ͼʱ??????ԭ???غ?
		db.gp.isOverlapOrigin = false;
		Draw2Y2Line.drawY2Line(db, serNum, htmlLink);
		db.outPoints();
		db.outLabels();
		if(htmlLink!=null){
			htmlLink.append(colLink.toString());
		}
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy