Передача массива в Asp.NET через ajax

http://stackoverflow.com/questions/309115/how-can-i-post-an-array-of-string-to-asp-net-mvc-controller-without-a-form

function test()
{
    var stringArray = new Array();
    stringArray[0] = "item1";
    stringArray[1] = "item2";
    stringArray[2] = "item3";
    var postData = { values: stringArray };

    $.ajax({
        type: "POST",
        url: "/Home/SaveList",
        data: postData,
        success: function(data){
            alert(data.Result);
        },
        dataType: "json",
        traditional: true
    });
}
public JsonResult SaveList(List values)
{
    return Json(new { Result = String.Format("Fist item in list: '{0}'", values[0]) });
}

Построение графов

Библиотеки для визуализации графов.
Смотрела arborjs (картинка «живая», постоянно движется), jsplumb (выглядит формально, хорошо для сурьезных отчетов), sigmajs (красивый эффект «рыбьего глаза» и др. эффекты).

Список из коммента на хабре (http://habrahabr.ru/post/128047/)

arborjs.org/
flare.prefuse.org/ //flex-flash
www.graphviz.org/Gallery.php
thejit.org/demos/
js-graph-it.sourceforge.net/index.html
jsplumb.org/jquery/demo.html
mbostock.github.com/protovis/ex/
raphaeljs.com/
www.graphdracula.net/de/showcase/
github.com/mbostock/d3/wiki/Gallery
cytoscapeweb.cytoscape.org/demos
sigmajs.org/examples.html
javascript.open-libraries.com/utilities/drawing/canviz-javascript-library/

и вот еще
eax.me/dracula/
graphdracula.net/