本文整理汇总了Java中org.jfree.chart.axis.DateTickUnitType.SECOND属性的典型用法代码示例。如果您正苦于以下问题:Java DateTickUnitType.SECOND属性的具体用法?Java DateTickUnitType.SECOND怎么用?Java DateTickUnitType.SECOND使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类org.jfree.chart.axis.DateTickUnitType
的用法示例。
在下文中一共展示了DateTickUnitType.SECOND属性的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getTimePeriodUnit
/**
* Returns the specific org.jfree.chart.axis.DateTickUnit time unit constant
* related to the String value passed as argument
*
* @param timePeriodUnit - a String represented by one of the following
* accepted values: ["Year", "Month", "Day", "Hour", "Minute", "Second", "Millisecond"]
* @return the specific org.jfree.chart.axis.DateTickUnit time unit constant
*/
protected DateTickUnitType getTimePeriodUnit(String timePeriodUnit)
{
if (timePeriodUnit == null)
return DateTickUnitType.DAY;
return timePeriodUnit.equals("Year")
? DateTickUnitType.YEAR
: timePeriodUnit.equals("Month")
? DateTickUnitType.MONTH
: timePeriodUnit.equals("Hour")
? DateTickUnitType.HOUR
: timePeriodUnit.equals("Minute")
? DateTickUnitType.MINUTE
: timePeriodUnit.equals("Second")
? DateTickUnitType.SECOND
: timePeriodUnit.equals("Millisecond")
? DateTickUnitType.MILLISECOND
: DateTickUnitType.DAY;
}
示例2: getDateTickUnit
private DateTickUnit getDateTickUnit(final TimeGranularity timeGranularity,
final long windowMillis) {
long windowBuckets = timeGranularity.convertToUnit(windowMillis);
int tickSize = (int) Math.ceil(windowBuckets / (double) NUM_X_TICKS);
DateTickUnitType unitType;
switch (timeGranularity.getUnit()) {
case DAYS:
unitType = DateTickUnitType.DAY;
break;
case HOURS:
unitType = DateTickUnitType.HOUR;
break;
case MILLISECONDS:
unitType = DateTickUnitType.MILLISECOND;
break;
case MINUTES:
unitType = DateTickUnitType.MINUTE;
break;
case SECONDS:
unitType = DateTickUnitType.SECOND;
break;
default:
throw new IllegalArgumentException(
"Unsupported time unit granularity: " + timeGranularity.getUnit());
}
return new DateTickUnit(unitType, tickSize);
}
示例3: testPreviousStandardDateSecondA
/**
* A basic check for the testPreviousStandardDate() method when the
* tick unit is 1 second.
*/
public void testPreviousStandardDateSecondA() {
MyDateAxis axis = new MyDateAxis("Second");
Second s0 = new Second(58, 31, 12, 1, 4, 2007);
Second s1 = new Second(59, 31, 12, 1, 4, 2007);
// five dates to check...
Date d0 = new Date(s0.getFirstMillisecond());
Date d1 = new Date(s0.getFirstMillisecond() + 50L);
Date d2 = new Date(s0.getMiddleMillisecond());
Date d3 = new Date(s0.getMiddleMillisecond() + 50L);
Date d4 = new Date(s0.getLastMillisecond());
Date end = new Date(s1.getLastMillisecond());
DateTickUnit unit = new DateTickUnit(DateTickUnitType.SECOND, 1);
axis.setTickUnit(unit);
// START: check d0 and d1
axis.setTickMarkPosition(DateTickMarkPosition.START);
axis.setRange(d0, end);
Date psd = axis.previousStandardDate(d0, unit);
Date nsd = unit.addToDate(psd, TimeZone.getDefault());
assertTrue(psd.getTime() < d0.getTime());
assertTrue(nsd.getTime() >= d0.getTime());
axis.setRange(d1, end);
psd = axis.previousStandardDate(d1, unit);
nsd = unit.addToDate(psd, TimeZone.getDefault());
assertTrue(psd.getTime() < d1.getTime());
assertTrue(nsd.getTime() >= d1.getTime());
// MIDDLE: check d1, d2 and d3
axis.setTickMarkPosition(DateTickMarkPosition.MIDDLE);
axis.setRange(d1, end);
psd = axis.previousStandardDate(d1, unit);
nsd = unit.addToDate(psd, TimeZone.getDefault());
assertTrue(psd.getTime() < d1.getTime());
assertTrue(nsd.getTime() >= d1.getTime());
axis.setRange(d2, end);
psd = axis.previousStandardDate(d2, unit);
nsd = unit.addToDate(psd, TimeZone.getDefault());
assertTrue(psd.getTime() < d2.getTime());
assertTrue(nsd.getTime() >= d2.getTime());
axis.setRange(d3, end);
psd = axis.previousStandardDate(d3, unit);
nsd = unit.addToDate(psd, TimeZone.getDefault());
assertTrue(psd.getTime() < d3.getTime());
assertTrue(nsd.getTime() >= d3.getTime());
// END: check d3 and d4
axis.setTickMarkPosition(DateTickMarkPosition.END);
axis.setRange(d3, end);
psd = axis.previousStandardDate(d3, unit);
nsd = unit.addToDate(psd, TimeZone.getDefault());
assertTrue(psd.getTime() < d3.getTime());
assertTrue(nsd.getTime() >= d3.getTime());
axis.setRange(d4, end);
psd = axis.previousStandardDate(d4, unit);
nsd = unit.addToDate(psd, TimeZone.getDefault());
assertTrue(psd.getTime() < d4.getTime());
assertTrue(nsd.getTime() >= d4.getTime());
}
示例4: testPreviousStandardDateSecondB
/**
* A basic check for the testPreviousStandardDate() method when the
* tick unit is 5 seconds (just for the sake of having a multiple).
*/
public void testPreviousStandardDateSecondB() {
MyDateAxis axis = new MyDateAxis("Second");
Second s0 = new Second(58, 31, 12, 1, 4, 2007);
Second s1 = new Second(59, 31, 12, 1, 4, 2007);
// five dates to check...
Date d0 = new Date(s0.getFirstMillisecond());
Date d1 = new Date(s0.getFirstMillisecond() + 50L);
Date d2 = new Date(s0.getMiddleMillisecond());
Date d3 = new Date(s0.getMiddleMillisecond() + 50L);
Date d4 = new Date(s0.getLastMillisecond());
Date end = new Date(s1.getLastMillisecond());
DateTickUnit unit = new DateTickUnit(DateTickUnitType.SECOND, 5);
axis.setTickUnit(unit);
// START: check d0 and d1
axis.setTickMarkPosition(DateTickMarkPosition.START);
axis.setRange(d0, end);
Date psd = axis.previousStandardDate(d0, unit);
Date nsd = unit.addToDate(psd, TimeZone.getDefault());
assertTrue(psd.getTime() < d0.getTime());
assertTrue(nsd.getTime() >= d0.getTime());
axis.setRange(d1, end);
psd = axis.previousStandardDate(d1, unit);
nsd = unit.addToDate(psd, TimeZone.getDefault());
assertTrue(psd.getTime() < d1.getTime());
assertTrue(nsd.getTime() >= d1.getTime());
// MIDDLE: check d1, d2 and d3
axis.setTickMarkPosition(DateTickMarkPosition.MIDDLE);
axis.setRange(d1, end);
psd = axis.previousStandardDate(d1, unit);
nsd = unit.addToDate(psd, TimeZone.getDefault());
assertTrue(psd.getTime() < d1.getTime());
assertTrue(nsd.getTime() >= d1.getTime());
axis.setRange(d2, end);
psd = axis.previousStandardDate(d2, unit);
nsd = unit.addToDate(psd, TimeZone.getDefault());
assertTrue(psd.getTime() < d2.getTime());
assertTrue(nsd.getTime() >= d2.getTime());
axis.setRange(d3, end);
psd = axis.previousStandardDate(d3, unit);
nsd = unit.addToDate(psd, TimeZone.getDefault());
assertTrue(psd.getTime() < d3.getTime());
assertTrue(nsd.getTime() >= d3.getTime());
// END: check d3 and d4
axis.setTickMarkPosition(DateTickMarkPosition.END);
axis.setRange(d3, end);
psd = axis.previousStandardDate(d3, unit);
nsd = unit.addToDate(psd, TimeZone.getDefault());
assertTrue(psd.getTime() < d3.getTime());
assertTrue(nsd.getTime() >= d3.getTime());
axis.setRange(d4, end);
psd = axis.previousStandardDate(d4, unit);
nsd = unit.addToDate(psd, TimeZone.getDefault());
assertTrue(psd.getTime() < d4.getTime());
assertTrue(nsd.getTime() >= d4.getTime());
}
示例5: createChart
private void createChart(UsageDataFrame points, String title) {
series = new TimeSeries(title);
for (UsageData d : points.getData()) {
Date resultdate = d.getDateTime();
Millisecond msRead = new Millisecond(resultdate);
int poweredValue = -1;
if (d.getObjBehavior().equalsIgnoreCase("powered")) {
poweredValue = d.getObjValue().equalsIgnoreCase("true") ? 1 : 0;
} else if (d.getObjBehavior().equalsIgnoreCase("brigthness")) {
try {
poweredValue = Integer.parseInt(d.getObjValue());
} catch (NumberFormatException ex) {
poweredValue = -1;
}
}
series.addOrUpdate(msRead, poweredValue);
}
XYDataset xyDataset = new TimeSeriesCollection(series);
chart = ChartFactory.createTimeSeriesChart("Chart",
"TIME", "VALUE",
xyDataset,
true, // legend
true, // tooltips
false // urls
);
chart.setAntiAlias(true);
// Set plot styles
XYPlot plot = (XYPlot) chart.getPlot();
plot.setBackgroundPaint(Color.lightGray);
plot.setDomainGridlinePaint(Color.white);
plot.setRangeGridlinePaint(Color.white);
plot.setAxisOffset(new RectangleInsets(2.0, 2.0, 2.0, 2.0));
// Set series line styles
plot.setRenderer(new XYStepRenderer());
XYItemRenderer r = plot.getRenderer();
if (r instanceof XYLineAndShapeRenderer) {
XYLineAndShapeRenderer renderer = (XYLineAndShapeRenderer) r;
renderer.setShapesVisible(true);
renderer.setShapesFilled(true);
}
// Set date axis style
DateAxis axis = (DateAxis) plot.getDomainAxis();
String formatString = "MM-dd HH";
DateTickUnitType dtut = DateTickUnitType.HOUR;
if (jComboGranularity.getSelectedItem().equals("Year")) {
formatString = "yyyy";
dtut = DateTickUnitType.YEAR;
} else if (jComboGranularity.getSelectedItem().equals("Month")) {
axis.setDateFormatOverride(new SimpleDateFormat("yyyy-MM"));
dtut = DateTickUnitType.MONTH;
} else if (jComboGranularity.getSelectedItem().equals("Day")) {
axis.setDateFormatOverride(new SimpleDateFormat("MM-dd"));
dtut = DateTickUnitType.DAY;
} else if (jComboGranularity.getSelectedItem().equals("Minute")) {
formatString = "MM-dd HH:mm";
dtut = DateTickUnitType.MINUTE;
} else if (jComboGranularity.getSelectedItem().equals("Second")) {
formatString = "HH:mm:SS";
dtut = DateTickUnitType.SECOND;
}
DateFormat formatter = new SimpleDateFormat(formatString);
DateTickUnit unit = new DateTickUnit(dtut, 1, formatter);
axis.setTickUnit(unit);
ChartPanel chartPanel = new ChartPanel(chart);
chartPanel.setPreferredSize(new java.awt.Dimension(800, 500));
graphPanel.removeAll();
graphPanel.add(chartPanel);
}