You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when i run this code then can not find AmCharts error comes in vs code
The text was updated successfully, but these errors were encountered:
pankajd1990
changed the title
How to add New Value axix and graph in Angular
How to add New Value axis and graph in Angular 6 by using Amchart 3
Feb 3, 2020
pankajd1990
changed the title
How to add New Value axis and graph in Angular 6 by using Amchart 3
How to add dynamically New Value axis and graph in Angular 6 by using Amchart 3
Feb 3, 2020
var valueAxis = new AmCharts.ValueAxis();
valueAxis.id = "p"+this.graphName.length,
valueAxis.title= "",
valueAxis.titleColor= "black",
valueAxis.color = "black",
valueAxis.position= "left",
valueAxis.axisThickness= 2;
// this.intigratedChartInstance.addValueAxis(valueAxis);
this.intiChartInstance.addValueAxis(valueAxis);
var amGraph:any = this.amChart.AmGraph();
amGraph.title= this.graphName[this.graphName.length - 1].key,
amGraph.id= "g"+this.graphName.length,
amGraph.valueField= this.graphName[this.graphName.length - 1].key,
amGraph.valueAxis= "p"+this.graphName.length,
// color: "white",
amGraph.type= "smoothedLine",
amGraph.lineThickness= 2.5,
amGraph.forceGap= true,
amGraph.bullet= "none",
amGraph.minDistance=2,
amGraph.bulletSize= 1,
amGraph.ballonColor= "blue",
amGraph.lineColor= "red",
amGraph.useDataSetColors= false,
amGraph.bulletBorderThickness=1,
amGraph.bulletBorderAlpha=1;
this.intigratedChartInstance.addGraph(amGraph);
when i run this code then can not find AmCharts error comes in vs code
The text was updated successfully, but these errors were encountered: