It seems that created charts willl display in the user's currency, so if the user has his settings in USD that's what we will see on the chart, if he has his settings in EUR, we will see EUR, etc.
I would like to create some specific charts which will always display in USD independently from the users' settings, but I can't figure out how. And I know this is possible because we have one chart that will do that - it will always display in $ no matter what currency the user has set. What is so special about this chart? I am leaving here the chat XML:Actual-Revenues-By-Month.xml
<visualization>
<visualizationid>{BD0E17C2-555F-DF11-AE90-00155D2E3002}</visualizationid>
<name>Actual Revenues By Month</name>
<description>Shows the amount of revenue closed per month.</description>
<primaryentitytypecode>salesorder</primaryentitytypecode>
<datadescription>
<datadefinition>
<fetchcollection>
<fetch mapping="logical" aggregate="true">
<entity name="salesorder">
<attribute alias="aggregate_column" name="totalamount_base" aggregate="sum" />
<attribute groupby="true" alias="groupby_column" dategrouping="month" name="datefulfilled" />
</entity>
</fetch>
</fetchcollection>
<categorycollection>
<category>
<measurecollection>
<measure alias="aggregate_column" />
</measurecollection>
</category>
</categorycollection>
</datadefinition>
</datadescription>
<presentationdescription>
<Chart>
<Series>
<Series IsValueShownAsLabel="True" Color="91, 151, 213" BackSecondaryColor="41, 88, 145" Font="{0}, 9.5px" LabelForeColor="59, 59, 59"
CustomProperties="PointWidth=0.75, MaxPixelPointWidth=40">
<SmartLabelStyle Enabled="True" />
</Series>
</Series>
<ChartAreas>
<ChartArea BorderColor="White" BorderDashStyle="Solid">
<AxisY LabelAutoFitMinFontSize="8" TitleForeColor="59, 59, 59" TitleFont="{0}, 10.5px" LineColor="165, 172, 181">
<MajorGrid LineColor="239, 242, 246" />
<MajorTickMark LineColor="165, 172, 181" />
<LabelStyle Font="{0}, 10.5px" ForeColor="59, 59, 59" />
</AxisY>
<AxisX LabelAutoFitMinFontSize="8" TitleForeColor="59, 59, 59" TitleFont="{0}, 10.5px" LineColor="165, 172, 181">
<MajorGrid Enabled="False" />
<MajorTickMark Enabled="False" />
<LabelStyle Font="{0}, 10.5px" ForeColor="59, 59, 59" />
</AxisX>
</ChartArea>
</ChartAreas>
<Titles>
<Title Alignment="TopLeft" DockingOffset="-3" Font="{0}, 13px" ForeColor="59, 59, 59" />
</Titles>
</Chart>
</presentationdescription>
<isdefault>false</isdefault>
</visualization>