Sorry, but there are no options in the software to remove the grid lines or the minor tick marks. Exactly what are you objections these items?
You can change the time display in the table to any format you want using the TableSetup | ChartData | CustomTimeFormatString property.
"TableSetup": {
"HeaderStringsLevel": "HEADER_STRINGS_LEVEL2",
"TableAlarmEmphasisMode": "ALARM_HIGHLIGHT_BAR",
"ChartAlarmEmphasisMode": "ALARM_HIGHLIGHT_SYMBOL",
"ChartData": {
"CustomTimeFormatString": "H:mm d/M/yy",
The format string follows standard Java date/time formatting rules. Here are some examples
"CustomTimeFormatString": "H:mm d/M/yy"
"CustomTimeFormatString": "H:mm:ss d/M/yy"
"CustomTimeFormatString": "H:mm M/dd/yy"
Using a much wider date/time formatting string may cause the date/time items in the data table to overlap. You may have to reduce the number of points you show in the chart at a time (NumDatapointsInView property) to prevent this.
Time format of the time axis labels in a TimeVariableControlChart can be customized in a similar manner using the PrimaryChartSetup | XAxisLabels | CustomFormatString.
"PrimaryChartSetup": {
"XAxisLabels": {
"CustomFormatString": "H:mm d/M/yy"
},
Note that the "CustomFormatString" property above does not have "Time" in it as the TableSetup | ChartData | CustomTimeFormatString version does.