I am trying to build a single chart with both a line type series and a bubble type series on a numericY axis and a categoryDateTimeX axis. The line series was drawn without any issues by itself. As soon as I add the bubble series on the same chart, it didn't draw anything on the chart. If I remove xMemberPath from the bubble series, the line series will show but no bubble series. Any idea? Thanks.
axes: [ { name: "chartX", type: "categoryDateTimeX", }, { name: "chartY", type: "numericY" } ], series: [ { name: "priceSeries", type: "line", title: "mid", xAxis: "chartX", yAxis: "chartY", valueMemberPath: "price", showTooltip: true }, { name: "qtySeries", type: "bubble", xAxis: "chartX", yAxis: "chartY", xMemberPath: "timestamp", yMemberPath: "price", radiusMemberPath: "qty", unknownValuePlotting: "dontplot", markerType: 'circle' } ],
Hello Michael,
Thank you for contacting Infragistics!
Category axes are invalid type for bubble series, that is the reason they would not render.
What I can suggest you to use point category series, to achieve similar effect.
Thanks, I will try to use point series. Is there a way to control the size and color separately for each point?