#3 Off the charts
Challenge topics and posts from previous years, for the memories 

7 posts
Page 1 of 1
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:

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:
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;
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:

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:

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.
here's my entry..............just a basic pie chart.. LOL


You do not have the required permissions to view the files attached to this post.
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.


This file is hosted off-site.


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.
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
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![]()
here is my entree nothing much though i am sick but i just did this :(
download
codes

download
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
You do not have the required permissions to view the files attached to this post.
7 posts
Page 1 of 1
Copyright Information
Copyright © Codenstuff.com 2020 - 2023