Skip to content

Instantly share code, notes, and snippets.

@bchetty
Created March 25, 2016 21:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bchetty/0a2ea370c09ab91c67ee to your computer and use it in GitHub Desktop.
Save bchetty/0a2ea370c09ab91c67ee to your computer and use it in GitHub Desktop.
Highcharts Sample Model Class
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