Rally burndown chart pulled programmatically - rally

How to pull rally burndown charts using rally based API's programmatically using C#? Could a working example be shared?

The only toolkit that loads charts programmatically(those are the same charts available on Reports>Reports page) is javascript AppSDK, which is using StandardReport component. There is no WS API endpoint that gets charts, and .NET toolkit does not have support for it.

Related

Forms API in eclipse rcp4

I'm trying to use FormToolkit for creating components and add them in section widgets for better look n feel in RCP4. But with this nothing is rendered on wizard page at runtime and there is no error also. Questions:
Is it possible to have forms api into Eclipse RCP4?

Need Rally Burndown chart API implementation to show in our dashboard

I am creating Dashboard(dashing.IO) in which i want to display the Rally Burn down chart.
You'll need to create your app in an html file and then embed it in an iframe element in a widget.
https://help.rallydev.com/apps/2.1/doc/#!/guide/embedding_apps
The burn down chart is accessible via the Standard Report component:
https://help.rallydev.com/apps/2.1/doc/#!/api/Rally.ui.report.StandardReport

Chart Integration in YII Framework

Is there any way by which we can show the grid column data in a chart in YII framework? How can I fetch data from database based upon a query and show it in a chart.
You can get data from database with use of YII functions. Pass data to JS chart function as json array.
Highcahrt extension available for yii in below link.
http://www.yiiframework.com/extension/yii2-highcharts-widget/
Other charts widely used with YII:
http://www.yiiframework.com/extension/yii-chartjs/
http://www.yiiframework.com/extension/googlechart/
http://www.yiiframework.com/extension/eamchartwidget/

Make a Custom Rally Grid a Bulk-Edit capable grid

Is it possible to add Bulk-Edit capabilities to a grid in a custom Rally app?
Unfortunately there aren't any pre-built hooks that you can toggle to make an AppSDK2 grid bulk-editable. I can see where this would be useful though - I'd recommend posting this as a Feature Request to Rally Ideas.
With App SDK v2.0rc3 you can add "enableBulkEdit: true" to the list of grid configs and it will add that capability

How do you integrate a RadEditor control into a Sitefinity custom designer?

On Sitefinity 4.x or 5.x CMS, how do you add a RadEditor to a custom widget? I currently have a regular text field and it works fine, however I would like to provide more functionality to the edit text.
I have a working custom widget that includes a working custom designer. No problems, there, just wondering about the specifics in integrating the RadEditor.
in Sitefinity the RadEditor is wrapped in an HtmlField which can be emedded in a control designer to allow rich text input.
Here's some info on creating control designers: http://www.sitefinity.com/blogs/joshmorales/posts/11-09-20/creating_advanced_sitefinity_4_widget_control_designers.aspx
And a blog post that demonstrates a control designer using the HtmlField: http://www.avisra.com/blog/2011/05/22/sitefinity-control-designer-fields
hope this is helpful!