Datasource: Microsoft SQL Server - Timezone

Hi, i have a problem with the date.
My Grafana server: # date is Tue May 8 11:43:44 CEST 2018
My Sql Server Managemtn Studio:
select getdate() is 2018-05-08 11:44:32.267
select getutcdate() is 2018-05-08 09:53:37.427

My query is:

SELECT
[ProcessCacheId],
[StartTime] as time, ( it is as CEST timezone)
[Elapsed]
FROM MyTable
where [StartTime] > DATEADD(minute,-2,Getdate())
order by 2
Axes X is correct but my value has 2018-05-08 13:44:32.267.( +2 Hours)
If i set General–> Timezone UTC , My value is correct but Axes X is 2018-05-08 09:44:32.267.( -2 Hours)
The problem is with Graph Panel.
If i use Table i see correct value with Column Styles --> Type: Number. If i select Date i have +2 hours.
Can you help me, please?

Francesco

I add informations:
__timeFrom() and __timeTo() have UTC time, instead of Local browser time so they are -2 hours.

FRancesco

Only date/times stored as utc value or in a column having timezone information are supported at the moment. Please refer to this issue for possible workarounds.

Marcus