This is a migrated thread and some comments may be shown as answers.

RadHtmlChart CandleStick Series Mouseover

1 Answer 73 Views
Chart (HTML5)
This is a migrated thread and some comments may be shown as answers.
Harvey
Top achievements
Rank 1
Harvey asked on 16 Jul 2014, 01:04 PM
Is there any way of changing the default mouseover of a candlestick chart from $ to blank or a specific value?

1 Answer, 1 is accepted

Sort by
0
Danail Vasilev
Telerik team
answered on 17 Jul 2014, 08:11 AM
Hello Harvey,

You can use templates for the tooltips. You can also format values in templates through kendo.format() method. For example:
ASPX:
<TooltipsAppearance>
    <ClientTemplate>
        Open Value: #=kendo.format(\'{0:N4}\',value.open)# <br/>
        High Value: #=value.high# <br/>
        Low Value: #=value.low # <br/>
        Close Value: #=value.close #
    </ClientTemplate>
</TooltipsAppearance>

More information is available in the following resources:
   - Overview


Regards,
Danail Vasilev
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
Chart (HTML5)
Asked by
Harvey
Top achievements
Rank 1
Answers by
Danail Vasilev
Telerik team
Share this question
or