-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathIChart.java
More file actions
30 lines (24 loc) · 736 Bytes
/
IChart.java
File metadata and controls
30 lines (24 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.pixelduke.javafx.chart;
import javafx.collections.ObservableList;
import javafx.scene.Group;
import javafx.scene.Node;
import javafx.scene.chart.Chart;
import javafx.scene.chart.XYChart;
/**
* Created with IntelliJ IDEA.
* User: Pedro
* Date: 09-09-2013
* Time: 20:25
* To change this template use File | Settings | File Templates.
*/
public interface IChart<X, Y> {
XYChart getChart();
Group getNodeRepresentation();
void setPrefWidth(double size);
void setPrefHeight(double size);
void setMaxWidth(double size);
void setMaxHeight(double size);
ObservableList<XYChart.Series> getData();
void setData(ObservableList<XYChart.Series<X, Y>> data);
void setTitle(String title);
}