Tree Xie

Results 169 comments of Tree Xie

I use pingora for my reverse proxy, you can look at the source code of `upstream_peer`: https://github.com/vicanso/pingap/blob/main/src/proxy/server.rs#L336 ```mermaid graph TD; start("New Request")-->server; server -- "host:HostA, Path:/api/*" --> locationA server --...

I am sorry, does not support stacked bar chart.

You can try to use like this: ```rust #[tokio::main] async fn run1() { // build our application with a route let app = Router::new() // `GET /` goes to `root`...

@l0nLychen 设置每个series的label为show即可: ```go opt.SeriesList[0].Label.Show = true ```

Please use `CellTextStyle` for setting font color.

可根据Column与Row来指定颜色,或者根据Text转换回数值再判断也可以。若还有问题,提供完整的可执行的代码示例。 ```go package main import ( "fmt" "os" "github.com/vicanso/go-charts/v2" "github.com/wcharczuk/go-chart/v2/drawing" ) func main() { header := []string{ "Name", "Age", "Address", "Tag", "Action", } data := [][]string{ { "John Brown", "32",...

Is the grpc service https or h2c ? H2C is not supported, #66

HTTP/2 over TCP: https://httpwg.org/specs/rfc7540.html#rfc.section.3.1