JIDE 3.3.1

com.jidesoft.chart.render
Interface LineRenderer2D

All Superinterfaces:
LineRenderer
All Known Implementing Classes:
SmoothLineRenderer

public interface LineRenderer2D
extends LineRenderer

An interface for classes that can be used to render lines in a Chart

Author:
Simon White (swhite@catalysoft.com)

Method Summary
 void renderLine(Graphics2D g2d, ChartModel m, double[] xPoints, double[] yPoints, ChartStyle style)
          Render lines using the supplied arrays of x and y pixel coordinates onto the supplied Graphics context.
 
Methods inherited from interface com.jidesoft.chart.render.LineRenderer
renderLine
 

Method Detail

renderLine

void renderLine(Graphics2D g2d,
                ChartModel m,
                double[] xPoints,
                double[] yPoints,
                ChartStyle style)
Render lines using the supplied arrays of x and y pixel coordinates onto the supplied Graphics context.

Parameters:
g2d - the Graphics context
m - the ChartModel from which the points originated
xPoints - an array of x coordinates
yPoints - an array of y coordinates
style - the suggested style for rendering (a custom renderer may choose to ignore this)

JIDE 3.3.1