在chart.js工具提示中显示多个值

时间:2017-04-25 10:03:34

标签: javascript reactjs charts react-chartjs

我想使用chart.js 2库中的圆环图来自定义我的工具提示。默认情况下,我的案例的工具提示是这样的: this

我想要的工具提示是这样的: enter image description here

EURO是SL。如何在数据集中添加百分比?我创建了一个包含值和百分比的数组,但是当我将它添加到我的数据集中时,我的饼是空的,这是合理的。这是我的代码:

protected void Button2_Click(object sender, EventArgs e)
{
    string CS = ConfigurationManager.ConnectionStrings["DBCS"].ConnectionString;
    using (SqlConnection con2 = new SqlConnection(CS))
    { 
        con2.Open();
        for (int y = 0; y < GridView1.Rows.Count - 0; y++)
        { 
            SqlCommand cmd2 = new SqlCommand("insertCityNameHeadTBL", con2);
            cmd2.CommandType = System.Data.CommandType.StoredProcedure;
            cmd2.Parameters.AddWithValue("@CityName", GridView1.Rows[y].Cells[1].Text);        
            cmd2.ExecuteNonQuery();

         }
     }
 }

有关如何实现这一点的任何想法?我知道我必须创建一个customTooltip但是从文档和我在javascript中的小经验还不清楚。有什么想法吗?

0 个答案:

没有答案