If you're seeing this message, that means
JavaScript has been disabled on your browser
, please
enable JS
to make this app work.
Simple example
Full example
Central Axes
{ "surface": { "theme": { "type": "Navy" }}, "series": { "type": "SplineLineSeries", "options": { "stroke": "red" }, "xyData": { "xValues": [1,3,4,7,9], "yValues": [10,6,7,2,16] } }, "yAxes": { "type": "NumericAxis", "options": { "visibleRange": {"min": 0, "max": 20} } }, "annotations": [{ "type": "SVGTextAnnotation", "options": { "text": "Builder API Demo", "x1": 0.5, "y1": 0.5, "opacity": 0.33, "yCoordShift": -26, "xCoordinateMode": "Relative", "yCoordinateMode": "Relative", "horizontalAnchorPoint": "Center", "verticalAnchorPoint": "Center", "fontSize": 42, "fontWeight": "Bold" } }, { "type": "SVGTextAnnotation", "options": { "text": "Create SciChart charts from JSON", "x1": 0.5, "y1": 0.5, "opacity": 0.33, "yCoordShift": 26, "xCoordinateMode": "Relative", "yCoordinateMode": "Relative", "horizontalAnchorPoint": "Center", "verticalAnchorPoint": "Center", "fontSize": 36, "fontWeight": "Bold" } }] }
Apply