Multi-select values in statistics are empty

Hello. I have custom multi-select based on MultiSelectCFType
When i creating pie chart based on this field, i cant see values, but chart is builded


My atlassian-plugin.xml looks like this

<?xml version="1.0" encoding="UTF-8"?>

<atlassian-plugin key="${project.groupId}.${project.artifactId}" name="${project.name}" plugins-version="2">
    <plugin-info>
        <description>${project.description}</description>
        <version>${project.version}</version>
        <vendor name="${project.organization.name}" url="${project.organization.url}"/>
        <param name="plugin-icon">images/pluginIcon.png</param>
        <param name="plugin-logo">images/pluginLogo.png</param>
    </plugin-info>
    <!-- add our i18n resource -->
    <resource type="i18n" name="i18n" location="jira-jql-universal-multiselect"/>
    <!-- add our web resources -->
    <web-resource key="jira-jql-universal-multiselect-resources" name="Jira Jql Select Web Resources">
        <dependency>com.atlassian.auiplugin:ajs</dependency>
        <dependency>com.atlassian.auiplugin:aui-select2</dependency>
        <resource type="download" name="jira-jql-universal-multiselect.css"
                  location="/css/jira-jql-universal-multiselect.css"/>
        <resource type="download" name="jira-jql-universal-multiselect.js"
                  location="/js/jira-jql-universal-multiselect.js"/>
        <resource type="download" name="images/" location="/images"/>
        <context>atl.general</context>
    </web-resource>
    <customfield-type key="jira-jql-universal-multiselect" name="Multi Select Issues by JQL (PlanIt)"
                      class="com.ringcentral.et.jira.plugin.JiraJqlUniversalMultiSelect">
        <description>Look up field - please contact PlanIt team first</description>
        <resource type="velocity" name="view" location="templates/view.vm"/>
        <resource type="velocity" name="edit" location="templates/edit.vm"/>
        <resource type="velocity" name="xml" location="templates/xml.vm"/>
    </customfield-type>


    <customfield-searcher key="multiselectsearcher" name="Multi Select Searcher"
                          class="com.ringcentral.et.jira.plugin.LocalMultiSelectSearcher"
                          i18n-name-key="admin.customfield.searcher.multiselectsearcher.name">
        <description key="admin.customfield.searcher.multiselectsearcher.desc">Search for values exactly matching the
            input
        </description>
        <resource type="velocity" name="search"
                  location="templates/plugins/fields/edit-searcher/search-multiselect.vm"/>
        <resource type="velocity" name="view"
                  location="templates/plugins/fields/view-searcher/view-searcher-multioption.vm"/>
        <valid-customfield-type package="${project.groupId}.${project.artifactId}"
                                key="jira-jql-universal-multiselect"/>
    </customfield-searcher>
</atlassian-plugin>

I have tried default view template, but result is same
What im doing wrong?

Found the answer by myself
Need to add in customfield-searcher

        <resource type="velocity" name="label" location="templates/plugins/fields/view-searcher/label-searcher-htmltext.vm"/>

2 Likes