2019-10-30 19:34:44 +03:00
|
|
|
// Copyright © 2018 Inanc Gumus
|
|
|
|
// Learn Go Programming Course
|
|
|
|
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
|
|
|
//
|
|
|
|
// For more tutorials : https://learngoprogramming.com
|
|
|
|
// In-person training : https://www.linkedin.com/in/inancgumus/
|
|
|
|
// Follow me on twitter: https://twitter.com/inancgumus
|
|
|
|
|
2019-08-17 15:55:25 +03:00
|
|
|
package main
|
|
|
|
|
2019-08-26 17:55:46 +03:00
|
|
|
// func chartWriter(w io.Writer) outputFn {
|
|
|
|
// return func(res []result) error {
|
|
|
|
// return chartWrite(w, res)
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
// func chartWrite(w io.Writer, res []result) error {
|
|
|
|
// sort.Slice(res, func(i, j int) bool {
|
|
|
|
// return res[i].domain > res[j].domain
|
|
|
|
// })
|
|
|
|
|
|
|
|
// donut := chart.DonutChart{
|
|
|
|
// Title: "Total Visits Per Domain",
|
|
|
|
// TitleStyle: chart.Style{
|
|
|
|
// FontSize: 35,
|
|
|
|
// Show: true,
|
|
|
|
// FontColor: chart.ColorAlternateGreen,
|
|
|
|
// },
|
|
|
|
// Width: 1920,
|
|
|
|
// Height: 800,
|
|
|
|
// }
|
|
|
|
|
|
|
|
// for _, r := range res {
|
|
|
|
// v := chart.Value{
|
|
|
|
// Label: r.domain + r.page + ": " + strconv.Itoa(r.visits),
|
|
|
|
// Value: float64(r.visits),
|
|
|
|
// Style: chart.Style{
|
|
|
|
// FontSize: 14,
|
|
|
|
// },
|
|
|
|
// }
|
|
|
|
|
|
|
|
// donut.Values = append(donut.Values, v)
|
|
|
|
// }
|
|
|
|
|
|
|
|
// return donut.Render(chart.SVG, w)
|
|
|
|
// }
|