Greetings Stackers,
I have a simple little application that performs some analysis of all our corporate clients, and generates a score for each one based on their activity (think "traffic light" happyness system).
Now, the score that's generated gets it's information from a variety of metrics, and spits out what can appear to be an arbitrary magic number.
What I want to do is present the algorythm results in an easily-consumed way.
At the moment I'm using a simple HTML document displayed in a webbrowser control, generated by the algorythm for each record.
For example, the output looks like this:
A meeting gives 20 points. Have 1 meeting. 20 points. Each phonecall gives 5 points. Have 5 phone calls. 25 points. Each purchase gives 10 points. Have 2 purchases. 20 points.
(in reality, there are some subtle highlights of colour on the key words too)
Is an embedded webbrowser control, populated by generated HTML really the best way of achieving this sort of thing? It seems a bit wrong.
Currently using winforms, but as it's a new, internal and simple app, can switch to WPF if more suitable.