Hi,
I want line and column chart together, so with I used combine chart. But I'm getting only column chart correctly, for Line chart its showing as dot.
var layer1 = new sap.makit.Layer({
type : sap.makit.ChartType.Column,
drawOnSecondaryAxis : true,
series : new sap.makit.Series({ column : "product", displayName : "product" }),
values : [new sap.makit.Value({
expression : "values", displayName : "quantity"
})],
lineThickness:3
});
var layer2 = new sap.makit.Layer({
type : sap.makit.ChartType.Line,
drawOnSecondaryAxis : true,
series : new sap.makit.Series({ column : "product", displayName : "product" }),
values : [new sap.makit.Value({
expression : "range",
displayName : "range"
})],
lineThickness:3
});
var layer3 = new sap.makit.Layer({
type : sap.makit.ChartType.Line,
series : new sap.makit.Series({ column : "product", displayName : "product" }),
values : [new sap.makit.Value({
expression : "collection",
//format : "NUMBER",
displayName : "collection"
})],
});
Regards,
Hema