#3 Off the charts

Challenge topics and posts from previous years, for the memories :)
7 posts Page 1 of 1
Contributors
User avatar
CodenStuff
Site Admin
Site Admin
Posts: 4390
Joined: Tue Aug 04, 2009 1:47 am

#3 Off the charts
CodenStuff
Welcome to challenge #3

Off the charts

The title usually gives a clue to what the challenge will be so have you guessed yet?.

Today's challenge is to create an app that can produce visual charts, such as a pie chart, bar chart or a line chart. This is an image example (just an example) of the type of thing we are looking for in this challenge:

Image

The user must be able to enter some chart options and values for those options which will then display the results graphically in some type of chart. Lets say for example I want to rate members on how good looking they are and the options are: #comathi, #Scottie1972 and #CodenStuff

comathi would get a value of 5
scottie also a value of 5
codenstuff would get 90 (obviously I get the most lol)

So the app would take that information and display it in a pie chart that would look something like this:

Image

And that is what your app needs to do.

So create an app that takes user inputted information and turns it into a visual chart using graphics, not just showing numbers and text.

Requirements for this challenge:
Must be made in VB.net or C#
Must show the results using graphics like a pie chart or bar chart..or any other similar way you can think of (be creative)
Must not use a component specifically designed for charts, you have to code it yourself.


This challenge may be quite "challenging" for some but please give it your best shot and points will be awarded for genuine effort and bonus points will be awarded for creativity and design.

Good luck cooll;
Welcome to CodenStuff.com Learn Code, Love Code. Thank you for being a member of the community.
User avatar
noypikami
VIP - Donator
VIP - Donator
Posts: 151
Joined: Sat Dec 22, 2012 1:49 am

Re: #3 Off the charts
noypikami
here's my entry..............just a basic pie chart.. LOL

Image
You do not have the required permissions to view the files attached to this post.
User avatar
comathi
Coding God
Coding God
Posts: 1242
Joined: Fri Mar 26, 2010 1:59 pm

Re: #3 Off the charts
comathi
Here is my entry:

This file is hosted off-site.

Image
Image

Here are the features:
- Graph and legend can both be moved by dragging
- To edit the title, simply click on it, then click out when done
- To add an item, fill in the textboxes, choose a color and click "+"
- To edit an item, select the item and edit the textboxes (press "+" when done)
- To delete an item, press the "-" button
- "Bake the pie" create the graph and the legend
- "Immortalize the pie" export the graph, legend and title as a PNG.
Filip
Coding Guru
Coding Guru
Posts: 833
Joined: Wed Jan 05, 2011 3:59 pm

Re: #3 Off the charts
Filip
Hello,

This is my entry..
Yes I know it's written in JavaScript but I decided to focus on web languages this year so there you go.
Hope it does count: http://projects.enytstudio.com/madmarch/index.php?n=3
CodenStuff wrote:
Nope, it's just your sick and dirty mind. You sick twisted warped little pervo :D
User avatar
kolega28
VIP - Donator
VIP - Donator
Posts: 338
Joined: Mon Jan 17, 2011 7:12 pm

Re: #3 Off the charts
kolega28
Here is my entry:
This is my first full project I did in VB in a year so it isn't great, I just wanted to at least try :)
Image
EDIT: Added Anti-Aliasing
Download link:
This file is hosted off-site.
Image
User avatar
Shim
VIP - Donator
VIP - Donator
Posts: 882
Joined: Wed Dec 14, 2011 5:02 am

Re: #3 Off the charts
Shim
here is my entree nothing much though i am sick but i just did this :(

Image

download
C chart.rar
codes
Code: Select all
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Chart1.Series("Series1").Points.AddXY("Codenstuff", 80)
        Chart1.Series("Series1").Points.AddXY("Scottie1972", 10)
        Chart1.Series("Series1").Points.AddXY("Comathi", 10)

        Chart1.Series("Series1").ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Pie

        Chart1.Series("Series1")("PieLabelStyle") = "Outside"

        Chart1.ChartAreas("Series1").Area3DStyle.Enable3D = True
    End Sub
You do not have the required permissions to view the files attached to this post.
Find my programs on Softpedia
User avatar
Livengood
Serious Programmer
Serious Programmer
Posts: 445
Joined: Tue Feb 16, 2010 6:24 am

Re: #3 Off the charts
Livengood
Image

Heres my Entree, i guess i thought i should join in xD havent done this in awhile lol cooll;
Mad March - 3 - 2013 - By Livengood.zip
You do not have the required permissions to view the files attached to this post.
Image
7 posts Page 1 of 1
Return to “Mad March Challenge Archive”