angular-plotly icon indicating copy to clipboard operation
angular-plotly copied to clipboard

Multiple graph on single page.

Open xam8re opened this issue 7 years ago • 0 comments

I've this issue. I need multiple graph on single page. In template i have:

        <div class="col-md-12">
            <plotly id="grafico01" plotly-data="vm.data" plotly-layout="vm.layout" plotly-options="vm.options" plotly-events="vm.eventGrafico01"></plotly>
        </div>
    </div>

    <div class="row">
        <div class="col col-md-12">
            <plotly id="grafico02"  plotly-data="vm.sentimentbycategory" plotly-layout="vm.layout1" plotly-options="vm.sentimentbycategoryoptions" plotly-events="vm.eventGrafico02"></plotly>
        </div>
    </div>

and all binding are correctly filled. But the html element used by plotly it's always the first. screenshot at 10-13-45

xam8re avatar Jul 10 '17 08:07 xam8re