Hello,
I have a stacked bar chart with a tool-tip issue that can be seen here. At the bottom of this image is the record that the tool-tip in the upper left corner is based on.
The chart uses the asset, event_datetime, and elapsed fields from the table. As you can see the elapsed value of 09:16:16 is displayed in the tool-tip as 07:00:00 pm.
Here is the code for the chart:
/*myDBR chart code */
select 'dbr.title', CONCAT('Elapsed Times Between Events - ', selected_date);
select 'dbr.chart', 'StackedBar';
select 'dbr.chart.options', 'showvalues', 0;
select 'dbr.chart.options', 'format', 'svg';
select 'dbr.colstyle', 'event_datetime', 'Y-m-d H:i:s';
/* select 'dbr.colstyle', 'elapsed', 'H:i:s'; */
select 'dbr.chart.options', 'tooltip', '';
I am not sure how I can get the tool-tip to display '09:16:16'.
Any help is much appreciated,
Mike