Get rid of the DrillDown in Highcharts - highcharts

I got a line chart and i want to disable or hide the drill down. I read the documentation and I i haven't found it
Any suggestions?
Thanx!

Related

How to a show a block between two points in highchart

I have to implement a feature which is to show a bar from A to B in highchart.
What I want to do is to for any two given points, I need to add a red bar. For example: show a red bar between A(10:25) to B(10:35).
I failed to find any answer online, does anybody know how to do that? Thanks.
I found arearange can solve the problem.

Highcharts How to bring tooltip above drill up button

I have a drill down report, it's tool tip is going behind the drillupbutton. How to bring the tool tip front/above of the drillupbutton?
Fiddlehttp://jsfiddle.net/rvg3dw4q/1/
To replicate drill down parent and place cursor on the last column.
you can use the following:
"tooltip":{"xDateFormat":"%m/%d/%Y",followPointer:true},
updated fiddle
hopefully it helps

New Hover Functionality in General Tab

I am using TeeChart2015X64.ocx, I see a new hover functionality in General Tab, The issue is when the number of Points on X-Axis are high then Mouseover in chart x-axis highlights wrong x-axis labels.
Can Anyone let me know how to disable this functionality from code since I don't see any function for the same.
Thanks
Akshay
Yes, try this:
TChart1.Hover.Visible = False
Edit 1:
For VC++, download the Hover headers from here and extract with the other TeeChart headers.
Edit 2:
To disable the Hover only for the bottom axis you can do this:
TChart1.Axis.Bottom.Labels.Selected.Hover.Visible = False

disable legend resizing of chart

Does anyone know the setting in highcharts (I've looked through the API but I can't seem to find it - maybe looking in the wrong place?) where I can disable the chart's ability to resize when I click on a legend item?
http://api.highcharts.com/highcharts#legend
If there are two lines on the graph, and toggle off one of them on the legend, the graph resizes to show the one line full sized. I want to prevent this functionality.
There actually is a simple solution to this provided for by the API:
chart: {
ignoreHiddenSeries: false
}
I'm pretty sure this is the behavior you desire.

How can I prevent tooltip to appears when I hover another element?

I'm developing a chart that have 2 splines and 2 scatter. I use the default tooltip formatter to exhib a tooltip based in the spline data. But when I hover a scatter despite I hide the default tooltip, before show the scatter one, it appears to have triggered again.
How can I prevent the default tooltip to be triggered?
ps: im using Highcharts 3.0.1
EDITED: I tried "chartObj.tooltip.enabled = false" but it didn't work.
If you don't want to show the tooltip for a particular serie in the chart, see if setting
enableMouseTracking: false
on you desired serie's properties does it.
Hope this help.
I solved using this code:
chartObj.tooltip.options.enabled = false;
Setting to "false" when I hover and to "true" on mouseout.

Resources