Hi Vinoth,
You cannot directly provide width, it has to be under aggregation plotArea and the range is between 1-7, anything outside it wouldst it to default 2.
PFB:
var oLine = new sap.viz.ui5.Line({
width:"300px",
height:"300px",
plotArea:new sap.viz.ui5.types.Line({width:1,
colorPalette: ["#ffffff","#9CC677"],
}),
title : {
visible : true,
text : 'Title'
},
dataset : oFlattenedDataSet
});
Set the colorPallete so that background and line colour is same as background. But again, the marker color would be same as color palette, so ultimately you would not be able to see anything. I still suggest you t move towards other chart types like bubble to achieve this.
Best Regards,
Swaroop