I am trying to use the dataadapter to handle my data in JSON format and have it presented on the view. However, I don’t seem to see an good examples of how I use data-bind on the view. I tried to set the dataadapter object in the view e.g.
<div id="chart" style="float: left; width:800px; height: 400px" data-bind='
jqxChart:
{
title: "",
description: "",
enableAnimations: false,
showLegend: true,
padding: { left: 30, top: 20, right: 30, bottom: 20 },
titlePadding: { left: 90, top: 0, right: 0, bottom: 10 },
source: dataAdapter,
categoryAxis:
{
text: “Category Axis”,
dataField: “name”,
textRotationAngle: 90,
showTickMarks: true,
tickMarksInterval: 1,
tickMarksColor: “#888888”,
unitInterval: 1,
showGridLines: false,
gridLinesInterval: 1,
gridLinesColor
But no luck. Can anyone help ?