SMART datagrid v.1 > Reporting > Classes
The item which displays the horizontal line.
When add it as setting object, "type" will be "hline". It can be used to display the separating line in the middle of List Item, etc. The vertical line is printed as PrintVLineItem.
var report = {
reportHeader: {
items: [{
type: "list",
items: [{
text: "Item1"
}, {
text: "Item2"
}, {
type: "hline"
}, {
text: "Item3"
}]
}]
}
};