Hi, can i use this code for stacked area chart ???
item:{
radius: 2;
}
or hi i can get dot’s on the top of area chart ??? only draw line chart above area chart ?
i want use radius like on line chart for stackedarea chart…
Hi, can i use this code for stacked area chart ???
item:{
radius: 2;
}
or hi i can get dot’s on the top of area chart ??? only draw line chart above area chart ?
i want use radius like on line chart for stackedarea chart…
Hi
only draw line chart above area chart ?
Yes, it is the only way
Darya when i draw line above stacked area chart, tooltip on line not working …
I am don’t use tooltip on the declare stackedArea chart and than use tooltip when declare “line” chart above this stackedArea but tooltip isn’t show.
When i declare tooltip on the stackedArea chart, i have a bug , for example
is first stackedArea chart Y-value = 30 and second stackedArea chart Y-value=10
when i move mouse cursor to 30 i have tooltip 30, but when i move cursor to 10 i have tooltip again 30 (max y-value on Y-axis is 600). If first stackedArea chart Y-value = 30 and second stackedArea chart Y-value=30 this problem not actual.
Why tooltip on the chart with type “line” not working when i add line on the stackedArea chart and disable tooltip on the stackedArea chart ??
Hello,
when i move mouse cursor to 30 i have tooltip 30, but when i move cursor to 10 i have tooltip again 30 (max y-value on Y-axis is 600)
You can define appropriate radius of event listening by eventRadius property:
chart = new dhtmlXChart({
…
eventRadius:2
});
Why tooltip on the chart with type “line” not working when i add line on the stackedArea chart and disable tooltip on the stackedArea chart ??
If tooltip areas of two series are the same, Chart will show tooltip of the first series.
Therefore, if lines of both series are the same, you should define tooltip for the series that is defined first.