Jump to content
JChartFX Community

notzippy@gmail.com

Members
  • Posts

    3
  • Joined

  • Last visited

notzippy@gmail.com's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Tried firefox , chrome, ie http://support.softwarefx.com/jChartFX/api#7c91027d-7063-e311-84a5-0019b9e6b500 May have something to do with this not resolving http://support.softwarefx.com/styles/font/fontawesome-webfont.woff?v=3.1.0
  2. I could not find this information elsewhere, so I thought I would share. If you are looking for the jquery implementation of the chart method calls like for example the following chart1.getPoints().getItem(0, 4).setTag("Turkey"); chart1.on("gettip", onGetTip); it is quite easy, assuming the div id for your chart is chart1 $(#chart1).chart("getPoints").getItem(0, 4).setTag("Turkey"); $(#chart1).chart("on","gettip",onGetTip); So anything you pass into the chart method will be the method call, and the rest of the arguements are arguments for the method call.
  3. It would be nice if you could add new FieldUsage field to control the color display of a series or the tag, this would be way easier then getting it after the fact... Example dataSourceSettings: { fields: [ { name: "Value", usage: cfx.FieldUsage.Value }, { name: "Label", usage: cfx.FieldUsage.Label}, { name: "Color", usage: cfx.FieldUsage.Color}, // Apply color directly to the point ! { name: "Tag", usage: cfx.FieldUsage.Tag}, // if using jChartFX CSS ] errors.zip
×
×
  • Create New...