target.addAttribute("min",
getDate(dateTimeAxis.getMin(), isIncludeTime));
}
if (dateTimeAxis.getDateTimeLabelFormat() != null) {
target.startTag("dateTimeLabelFormats");
DateTimeLabelFormat dateTimeLabelFormat = dateTimeAxis
.getDateTimeLabelFormat();
if (dateTimeLabelFormat.getSecond() != null) {
target.addAttribute("second", dateTimeAxis
.getDateTimeLabelFormat().getSecond());
}
if (dateTimeLabelFormat.getMinute() != null) {
target.addAttribute("minute", dateTimeAxis
.getDateTimeLabelFormat().getMinute());
}
if (dateTimeLabelFormat.getHour() != null) {
target.addAttribute("hour", dateTimeAxis
.getDateTimeLabelFormat().getHour());
}
if (dateTimeLabelFormat.getDay() != null) {
target.addAttribute("day", dateTimeAxis
.getDateTimeLabelFormat().getDay());
}
if (dateTimeLabelFormat.getWeek() != null) {
target.addAttribute("week", dateTimeAxis
.getDateTimeLabelFormat().getWeek());
}
if (dateTimeLabelFormat.getMonth() != null) {
target.addAttribute("month", dateTimeAxis
.getDateTimeLabelFormat().getMonth());
}
if (dateTimeLabelFormat.getYear() != null) {
target.addAttribute("year", dateTimeAxis
.getDateTimeLabelFormat().getYear());
}
target.endTag("dateTimeLabelFormats");
}