zoukankan      html  css  js  c++  java
  • 使用OWC 做图表时按周、月、年设置时间刻度是参数无效问题解决方法

    设置如下时间刻度:

     ChartAxisGroupingEnum.chAxisGroupingManual;
     ChartAxisUnitTypeEnum.chAxisUnitMonth;

    需要在SetData后面加上上面属性,否则会出现参数无效问题:

     InsertChart.SeriesCollection.Add(0);
                InsertChart.SeriesCollection[0].DataLabelsCollection.Add();
                InsertChart.SeriesCollection[0].DataLabelsCollection[0].HasValue = true;
                InsertChart.SeriesCollection[0].SetData(ChartDimensionsEnum.chDimSeriesNames, +(int)ChartSpecialDataSourcesEnum.chDataLiteral, "销售总额");
                InsertChart.SeriesCollection[0].SetData(ChartDimensionsEnum.chDimCategories, +(int)ChartSpecialDataSourcesEnum.chDataLiteral, strXdata);
                InsertChart.SeriesCollection[0].SetData(ChartDimensionsEnum.chDimValues, (int)ChartSpecialDataSourcesEnum.chDataLiteral, strYdata);

     InsertChart.Axes[0].GroupingType = OWC10.ChartAxisGroupingEnum.chAxisGroupingManual;
                InsertChart.Axes[0].GroupingUnitType = ChartAxisUnitTypeEnum.chAxisUnitMonth;
                InsertChart.Axes[0].NumberFormat = "yyyy-MM";
                InsertChart.Axes[0].GroupingUnit = 1;

  • 相关阅读:
    ASP记数器
    Photoshop压缩png图片方法之一
    Drupal的高速缓存配置APC
    各种share button
    兼容iphone、ipad与PC平台的在线视频
    知识组织方法总结
    Virtuemart2 for joomla2.5
    joomla2.5 常用组件
    网上找来经过改良的多级联动下拉菜单
    joomla组件开发中的时区问题
  • 原文地址:https://www.cnblogs.com/94cool/p/2043231.html
Copyright © 2011-2022 走看看