Created
March 25, 2016 21:26
-
-
Save bchetty/0a2ea370c09ab91c67ee to your computer and use it in GitHub Desktop.
Highcharts Sample Model Class
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.bchetty.charts.model; | |
import java.util.List; | |
/** | |
* | |
* @author Babji Prashanth, Chetty | |
*/ | |
public class Series { | |
private String name; | |
private List<Long> data; | |
public Series() {} | |
public Series(String name, List<Long> data) { | |
this.name = name; | |
this.data = data; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment