Hi!
I’m developing Ruby on Rails app and render highchart like this:
= render 'chart'```
The chart displays and works fine. However, when I try to render it inside webix scrollview, the container remains empty. My code:
```#section3{:style => "display:none;"}
#container{:height => "800px", :width => "1100px"}
= render 'chart'```
```webix.ui({view:"layout",
container:"scroll", type:"line", rows:[
{view: "scrollview", id: "sections", height: 600,
scroll: "y",
body:{
type: "space", rows:[
{ id: "section_3", template: "html->section3", height: 300}
]}
}
]
})```
```function scroll(id){
$$("sections").showView("section_"+id);
};```
Please help me to understand where is my mistake.
It seems that the contents of Highcharts (canvas) cannot be moved from one container to another. But you can initialize the Highchart directly in the template once it is rendered: http://webix.com/snippet/2b7b7f03
Alternatively, you can create a custom component and render the Highchart with the necessary setting within it: https://webix.com/snippet/3fb3cddf
hi everyone, can anyone plz help me to sort this problem
problem is i need to make legend points in highchart oval shape is that possible yes means please give me suggestions
advance thanks