aplarsen

Members
  • Content count

    2
  • Joined

  • Last visited

About aplarsen

  • Rank
    Forum Newbie
  1. Rotate values for only one series

    That's what I was afraid of. Thanks for the reply.
  2. I have a MSCombiDY2D chart that has some column and line series. I only want the values for the column series to rotate so I can put some informative text in there. placeValuesInside:1 and rotateValues:1 seem to work at the chart level, but can it be specified at the series level? I'm pushing data into some JS objects using code like this...the ~(week) tags are my server-side variables that are being iterated through using another language. categories.push({"label": "~(week)"}); data[0].data.push({"value": "~(missingassignments)"}); data[1].data.push({"value": "~(aid_periods)"}); data[2].data.push({"value": "~(d)"}); data[3].data.push({"value": "~(f)"}); data[4].data.push({"value": "~(referrals_value)", "displayValue": "~(referrals;json)", "placeValuesInside": "1", "rotateValues": "1"}); Applying those properties to the series seems to have no effect. Is there a way to do this? It disrupts the chart quite a bit to rotate all the values, since some of them are just small numbers.