If you want to do it in Excel, Chandoo has a tutorial on creating a network relationship chart here
Поиск правильного графика для отображения связей между отделами
У меня есть задача показать взаимосвязь между кафедрами в моем университете. Идея состоит в том, чтобы показать, сколько отделов объединяются для работы над проектом. У меня есть данные о проектах в файле Excel, соавторах и отделах соавторов. Как бы вы пошли на рисование графика из этих данных? Требуется, чтобы названия отделов были представлены на витрине и чтобы между отделами были отделы. Если один отдел (через несколько проектов) подключается к другому отделу несколько раз, линия должна стать толще ... В каком программном обеспечении / среде это будет проще всего реализовать? Я также знаком с языками программирования.
Заранее спасибо!
2 ответа на вопрос
teylyn's answer is definitely the best choice.
But you can do this many different ways. From a coding standpoint, you could do this with any language that supports reading data from an Excel file, reading data from a file type Excel can either export or save as, or has an API for Microsoft Documents.
It would also be useful if the language chosen supports rendering images to the screen or creating some sort of image file (bmp/png/jpg/...) or has an API that does either of the aforementioned. So that you can either view the graph on your computer or print the graph.
If the language chosen to read the Excel file differs from the language to create the graph, then that is ok too. You can use both languages and figure out a way to resemble the data gathered from language one in such a way as to be usable by language two.
I would personally use Java, although VB.net can apparently read Excel files without the need of an API.
Here are some APIs for Microsoft Documents with their respective languages:
- Apache POI - the Java API for Microsoft Documents
- Java Excel API - A Java API to read, write, and modify Excel spreadsheets
- Reading From and Writing to Excel Files in C++
- A Quick Google Search Results in Many More
Here are some links about the graphical portion:
Похожие вопросы
-
3
Мой файл заблокирован в Excel 2007, что происходит?
-
2
Есть ли способ заставить Excel 2007 автоматически восстанавливать фоновые файлы, как в MS Word?
-
1
Excel Word Wrap + исчезающий текст
-
-
1
Простое объединение / очистка с помощью Excel
-
7
Как вы поддерживаете Microsoft Excel на полной скорости, даже если у него нет фокуса окна?
-
2
Почему вы не можете копировать / вставлять изображения в Excel, но скриншоты работают?
-
3
Как синхронизировать Excel с таблицей Google Docs
-
9
Как разделить имя, чтобы получить имя и фамилию?
-
1
Ссылки в Excel изменены после сбоя
-
1
Каков наилучший способ поделиться макросом Excel на нескольких машинах?